diff options
Diffstat (limited to 'nlpsolver/ThirdParty')
-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); } |