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.
1 parent 1b86391 commit d4a4f3bCopy full SHA for d4a4f3b
src/main/scala/inox/solvers/combinators/NonIncrementalSolver.scala
@@ -52,6 +52,7 @@ trait NonIncrementalSolver extends AbstractSolver { self =>
52
currentSolver = Some(newSolver)
53
for (expression <- assertions)
54
newSolver.assertCnstr(expression)
55
+ // 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())
0 commit comments