diff options
author | Hoang M. Le <hle@informatik.uni-bremen.de> | 2016-10-26 13:17:50 +0200 |
---|---|---|
committer | Hoang M. Le <hle@informatik.uni-bremen.de> | 2016-10-26 13:17:50 +0200 |
commit | b3ebc940f521005e232389268177b1200a79616b (patch) | |
tree | 4bc62b152f8afec7fe467e529d96bb5c320a99b7 /lib/Solver/MetaSMTSolver.cpp | |
parent | 35f6c2ba53eb0b76ebd7eb2f4a9d6684c9157335 (diff) | |
download | klee-b3ebc940f521005e232389268177b1200a79616b.tar.gz |
remove outdated FIXME (metaSMT-Z3 implements assumption via push/pop)
Diffstat (limited to 'lib/Solver/MetaSMTSolver.cpp')
-rw-r--r-- | lib/Solver/MetaSMTSolver.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/Solver/MetaSMTSolver.cpp b/lib/Solver/MetaSMTSolver.cpp index 6bfd79c1..e1261ad2 100644 --- a/lib/Solver/MetaSMTSolver.cpp +++ b/lib/Solver/MetaSMTSolver.cpp @@ -173,13 +173,6 @@ bool MetaSMTSolverImpl<SolverContext>::computeInitialValues( TimerStatIncrementer t(stats::queryTime); assert(_builder); - /* - * FIXME push() and pop() work for Z3 but not for Boolector. - * If using Z3, use push() and pop() and assert constraints. - * If using Boolector, assume constrainsts instead of asserting them. - */ - // push(_meta_solver); - if (!_useForked) { for (ConstraintManager::const_iterator it = query.constraints.begin(), ie = query.constraints.end(); @@ -211,8 +204,6 @@ bool MetaSMTSolverImpl<SolverContext>::computeInitialValues( } } - // pop(_meta_solver); - return (success); } |