summaryrefslogtreecommitdiff
path: root/src/theory/arith/partial_model.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2012-04-02 20:56:55 +0000
committerTim King <taking@cs.nyu.edu>2012-04-02 20:56:55 +0000
commit1a558a30bec496444742ed75c0a6973d9789daf7 (patch)
tree81d5f4aedc3a320c4b95945c71a1e3cf0d8e88af /src/theory/arith/partial_model.h
parentf9d3552033d8214c833b58ed54d99c836de4ce37 (diff)
- Merged in the branch cdlist-cleanup.
- This adds a CleanUp template argument to CDList. - CDChunkList<T> replaces the CDList specialization for ContextMemoryAllocator. - CDVector<T> has been simplified and improved. - The expected performance impact is negligible.
Diffstat (limited to 'src/theory/arith/partial_model.h')
-rw-r--r--src/theory/arith/partial_model.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/theory/arith/partial_model.h b/src/theory/arith/partial_model.h
index 7a2a97726..7e2211595 100644
--- a/src/theory/arith/partial_model.h
+++ b/src/theory/arith/partial_model.h
@@ -74,10 +74,10 @@ public:
d_hasSafeAssignment(),
d_assignment(),
d_safeAssignment(),
- d_upperBound(c, true),
- d_lowerBound(c, true),
- d_upperConstraint(c,true),
- d_lowerConstraint(c,true),
+ d_upperBound(c),
+ d_lowerBound(c),
+ d_upperConstraint(c),
+ d_lowerConstraint(c),
d_deltaIsSafe(false),
d_delta(-1,1),
d_history(),
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback