summaryrefslogtreecommitdiff
path: root/src/theory/bv/bitblaster_template.h
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.stanford.edu>2017-03-28 18:29:48 -0700
committerClark Barrett <barrett@cs.stanford.edu>2017-03-28 18:29:48 -0700
commit3d1ad64367948039f67f653e34f19359e3c9c496 (patch)
tree199a78da87159627dc901468276c7e232829af6e /src/theory/bv/bitblaster_template.h
parent679011435a1200ed97148d6daae130b48254c0e2 (diff)
Fix for bug 733
Diffstat (limited to 'src/theory/bv/bitblaster_template.h')
-rw-r--r--src/theory/bv/bitblaster_template.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/theory/bv/bitblaster_template.h b/src/theory/bv/bitblaster_template.h
index aa5ae9c16..8a7ccf8c6 100644
--- a/src/theory/bv/bitblaster_template.h
+++ b/src/theory/bv/bitblaster_template.h
@@ -161,7 +161,10 @@ class TLazyBitblaster : public TBitblaster<Node> {
AbstractionModule* d_abstraction;
bool d_emptyNotify;
- context::CDO<bool> d_satSolverFullModel;
+ // The size of the fact queue when we most recently called solve() in the
+ // bit-vector SAT solver. This is the level at which we should have
+ // a full model in the bv SAT solver.
+ context::CDO<int> d_fullModelAssertionLevel;
void addAtom(TNode atom);
bool hasValue(TNode a);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback