summaryrefslogtreecommitdiff
path: root/src/theory/bv/theory_bv.cpp
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.stanford.edu>2016-12-02 16:25:26 -0800
committerClark Barrett <barrett@cs.stanford.edu>2016-12-02 16:28:17 -0800
commitc356e6b4e5aecd6d13e398b361eb15a4dea18d91 (patch)
tree377b6ce7c65def72cadeb3d47319521b7c3afd1c /src/theory/bv/theory_bv.cpp
parentc05da2e3418f71ea7d9d8d59c76dc6773ead608b (diff)
Fix for bug 734
Diffstat (limited to 'src/theory/bv/theory_bv.cpp')
-rw-r--r--src/theory/bv/theory_bv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/bv/theory_bv.cpp b/src/theory/bv/theory_bv.cpp
index b6b29410f..2fc5fd096 100644
--- a/src/theory/bv/theory_bv.cpp
+++ b/src/theory/bv/theory_bv.cpp
@@ -87,7 +87,7 @@ TheoryBV::TheoryBV(context::Context* c, context::UserContext* u,
}
if (options::bitvectorInequalitySolver()) {
- SubtheorySolver* ineq_solver = new InequalitySolver(c, this);
+ SubtheorySolver* ineq_solver = new InequalitySolver(c, u, this);
d_subtheories.push_back(ineq_solver);
d_subtheoryMap[SUB_INEQUALITY] = ineq_solver;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback