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
Fix the strashCode; add benchmark
Thanks to Evan Cordell who spotted a problem with the strash code colliding.
Interesting, as it has a strong impact on the logic/c performance
(but none on solving).
See #17
aiger bugfix and usability improvements
This commit fixes a bug in the aiger ascii output for latch values and
adds some usability/performance improvements
For usability, we have added a Write method to gini to have it dump
a dimacs CNF to a writer.
For performance, we have made it so that more learned clauses could be
derived in incremental mode with test scopes when the last solve gave
unsat.
Untest on unsat bugfix
This commit fixes a bug in Untest when the last sat call was Unsat.
The conflict on untest results in more derivations during backtracking.
This fix ensures that all unit clauses are propagated.
Previously, the unit clause from derivations during untest backtracking
were not propagated.