ソースを参照

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()