Skip to content

Commit

Permalink
Initial fix to comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
neal-ks committed Dec 1, 2024
1 parent 411fdd8 commit 6912d45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smt/sampling_methods/lhs.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def _maximinESE(
hist_T.extend(inner_loop * [T])
hist_proba.extend(inner_loop * [p_accpt])

if PhiP_best - PhiP_oldbest < tol:
if PhiP_oldbest - PhiP_best > tol:
# flag_imp = 1
if p_accpt >= 0.1 and p_imp < p_accpt:
T = 0.8 * T
Expand Down

0 comments on commit 6912d45

Please sign in to comment.