summaryrefslogtreecommitdiff
path: root/src/prop/minisat/simp/SimpSolver.C
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2010-03-08 21:08:40 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2010-03-08 21:08:40 +0000
commitb1d9707979074abb8fed7ad4e8a2b15648c69324 (patch)
tree236c83135c62a7499d1039fff94037950e05061e /src/prop/minisat/simp/SimpSolver.C
parent7b19de6b01d9a896560c39c9ef4a3731cf29b19d (diff)
some more sat stuff for tim: assertions now go to theory_uf
Diffstat (limited to 'src/prop/minisat/simp/SimpSolver.C')
-rw-r--r--src/prop/minisat/simp/SimpSolver.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/prop/minisat/simp/SimpSolver.C b/src/prop/minisat/simp/SimpSolver.C
index 124849155..a2e46e2e4 100644
--- a/src/prop/minisat/simp/SimpSolver.C
+++ b/src/prop/minisat/simp/SimpSolver.C
@@ -58,8 +58,8 @@ SimpSolver::~SimpSolver()
}
-Var SimpSolver::newVar(bool sign, bool dvar) {
- Var v = Solver::newVar(sign, dvar);
+Var SimpSolver::newVar(bool sign, bool dvar, bool theoryAtom) {
+ Var v = Solver::newVar(sign, dvar,theoryAtom);
if (use_simplification){
n_occ .push(0);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback