summaryrefslogtreecommitdiff
path: root/src/theory/arith/constraint.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/constraint.h')
-rw-r--r--src/theory/arith/constraint.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/theory/arith/constraint.h b/src/theory/arith/constraint.h
index 5b49dd54d..dcc3bf8bb 100644
--- a/src/theory/arith/constraint.h
+++ b/src/theory/arith/constraint.h
@@ -762,6 +762,8 @@ private:
const context::Context * const d_satContext;
const int d_satAllocationLevel;
+ NodeCallBack& d_raiseConflict;
+
friend class ConstraintValue;
public:
@@ -769,12 +771,13 @@ public:
ConstraintDatabase( context::Context* satContext,
context::Context* userContext,
const ArithVarNodeMap& av2nodeMap,
- ArithCongruenceManager& dm);
+ ArithCongruenceManager& dm,
+ NodeCallBack& conflictCallBack);
~ConstraintDatabase();
+ /** Adds a literal to the database. */
Constraint addLiteral(TNode lit);
- //Constraint addAtom(TNode atom);
/**
* If hasLiteral() is true, returns the constraint.
@@ -852,6 +855,8 @@ public:
void unatePropEquality(Constraint curr, Constraint prevLB, Constraint prevUB);
private:
+ void raiseUnateConflict(Constraint ant, Constraint cons);
+
class Statistics {
public:
IntStat d_unatePropagateCalls;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback