Skip to content
Merged
Changes from 1 commit
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
4 changes: 3 additions & 1 deletion micro_manager/micro_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,9 @@ def solve(self) -> None:
is_sim_active = np.copy(is_sim_active_cp)
sim_is_associated_to = np.copy(sim_is_associated_to_cp)

else: # Time window has converged, now micro output can be generated
if (
self._participant.is_time_window_complete()
): # Time window has converged, now micro output can be generated
Comment thread
IshaanDesai marked this conversation as resolved.
self._logger.info(
"Micro simulations {} - {} have converged at t = {}".format(
self._micro_sims[0].get_global_id(),
Expand Down