diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-01-26 11:21:14 +0100 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2018-01-27 08:49:38 +0100 |
commit | 5c0af52feb2a392135489e0c1516cf4566d132cf (patch) | |
tree | 54ec985003678b3e8e19804512ce292fabff20b3 /nlpsolver | |
parent | 73ded2398e2e99f6604f6b76d4129163fffd462f (diff) |
Fix typos
Change-Id: I8d5a8251a01af7cdf9832d98d8a6573b907f8532
Reviewed-on: https://gerrit.libreoffice.org/48683
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'nlpsolver')
-rw-r--r-- | nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/sco/SCAgent.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/sco/SCAgent.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/sco/SCAgent.java index 959b22e13ffa..809211e31ddf 100644 --- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/sco/SCAgent.java +++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/sco/SCAgent.java @@ -108,9 +108,9 @@ public class SCAgent { public void updateInfo() { //Selects a bad point kw from TaoW points in Library int xw = externalLib.tournamentSelection(specComparator, TaoW, false); - //Repaces kw with pcurrent_t + //Replaces kw with pcurrent_t externalLib.getSelectedPoint(xw).importPoint(pcurrent_t); - //Repaces pcurrent_t (x(t)) with trailPoint (x(t+1)) + //Replaces pcurrent_t (x(t)) with trailPoint (x(t+1)) pcurrent_t.importPoint(trailPoint); } |