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
For example, when the problem is UNSAT under assumptions, it still might be "solvable" without those assumptions, but currently it gets flagged as solvable=false. It is not possible (afaik) to distinct between "UNSAT because of assumptions" and "UNSAT because of all added clauses", so maybe solve(assumptions) should not touch the solvable field at all.
The same goes for JGlucose.
The text was updated successfully, but these errors were encountered:
JMiniSat::solvable
field should not be updated when solving with assumptions: https://github.com/Lipen/kotlin-satlib/blob/master/jni/src/main/kotlin/com/github/lipen/satlib/jni/solver/JMiniSat.kt#L187-L190For example, when the problem is UNSAT under assumptions, it still might be "solvable" without those assumptions, but currently it gets flagged as
solvable=false
. It is not possible (afaik) to distinct between "UNSAT because of assumptions" and "UNSAT because of all added clauses", so maybesolve(assumptions)
should not touch thesolvable
field at all.The same goes for
JGlucose
.The text was updated successfully, but these errors were encountered: