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
I call satisfy_one with assumptions for expression which is not in CNF form. Then it calls _backtrackhere, receives None because restricted expression is unsatisfiable and crashes at next line.
Something like this would fix the problem:
soln = _backtrack(self.restrict(aupnt))
return None if soln is None else soln.update(aupnt)
The text was updated successfully, but these errors were encountered:
I call
satisfy_one
with assumptions for expression which is not in CNF form. Then it calls_backtrack
here, receivesNone
because restricted expression is unsatisfiable and crashes at next line.Something like this would fix the problem:
The text was updated successfully, but these errors were encountered: