We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7752948 + d4a4f3b commit ec3b77fCopy full SHA for ec3b77f
src/main/scala/inox/solvers/combinators/NonIncrementalSolver.scala
@@ -52,7 +52,10 @@ trait NonIncrementalSolver extends AbstractSolver { self =>
52
currentSolver = Some(newSolver)
53
for (expression <- assertions)
54
newSolver.assertCnstr(expression)
55
- val res = newSolver.checkAssumptions(config)(assumptions)
+ // we assert the assumptions to address: https://github.com/Z3Prover/z3/issues/5257
56
+ for (assumption <- assumptions)
57
+ newSolver.assertCnstr(assumption)
58
+ val res = newSolver.checkAssumptions(config)(Set())
59
currentSolver = None
60
res
61
} finally {
0 commit comments