浏览代码

fix while loop issue..

Jérôme BUISINE 4 年之前
父节点
当前提交
d0e7a639ad
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      optimization/ILSSurrogate.py

+ 1 - 1
optimization/ILSSurrogate.py

@@ -147,7 +147,7 @@ class ILSSurrogate(Algorithm):
         
             # get `self.start_train_surrogate` number of real evaluations and save it into surrogate dataset file
             # using randomly generated solutions (in order to cover seearch space)
-            while self.start_train_surrogate <= self.getGlobalEvaluation():
+            while self.start_train_surrogate > self.getGlobalEvaluation():
                 
                 newSolution = self.initializer()