Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions mpisppy/cylinders/spoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,8 @@ def register_send_fields(self):
)

def update_if_improving(self, candidate_inner_bound, update_best_solution_cache=True):
if candidate_inner_bound is None:
return False
if update_best_solution_cache:
update = self.opt.update_best_solution_if_improving(candidate_inner_bound)
else:
Expand Down
Loading