You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Propagation can change the domain even if it's already at BOT. But we don't need to rely on has_changed to decide when the solving is finished anyways.
// In the condition, we must only read variables that are local to this block.
439
439
// Otherwise, two threads might read different values if it is changed in between by another block.
440
440
while(block_has_changed && !stop) {
441
-
// For correctness we need this local variable, we cannot use `block_has_changed` (because it might still need to be read by other threads to enter this loop).
0 commit comments