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
Hi Marijn,
depending on the compiler optimization level, memory isn't always initialized to zero.
If the values of m_false[0] and m_prev[0] happen to be non-zero, the following lines might create an infinite loop
as soon as the decision variable becomes zero (depends on S->prev[0], too):
Hi Marijn,
depending on the compiler optimization level, memory isn't always initialized to zero.
If the values of
m_false[0]
andm_prev[0]
happen to be non-zero, the following lines might create an infinite loopas soon as the
decision
variable becomes zero (depends onS->prev[0]
, too):microsat/microsat.c
Lines 173 to 174 in 04f9625
Proposed fix:
set
m_false[0] = 0;
in initCDCL()The text was updated successfully, but these errors were encountered: