summaryrefslogtreecommitdiff
path: root/src/theory/arith/simplex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/simplex.h')
-rw-r--r--src/theory/arith/simplex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/arith/simplex.h b/src/theory/arith/simplex.h
index b61cadaf8..f545da51e 100644
--- a/src/theory/arith/simplex.h
+++ b/src/theory/arith/simplex.h
@@ -157,16 +157,16 @@ protected:
* If a conflict is discovered a node summarizing the conflict is returned.
* Otherwise, Node::null() is returned.
*/
- Node maybeGenerateConflictForBasic(ArithVar basic) const;
+ bool maybeGenerateConflictForBasic(ArithVar basic) const;
/** Returns true if a tracked basic variable has a conflict on it. */
bool checkBasicForConflict(ArithVar b) const;
/**
* If a basic variable has a conflict on its row,
- * this produces a minimized row.
+ * this produces a minimized row on the conflict channel.
*/
- Node generateConflictForBasic(ArithVar basic) const;
+ void generateConflictForBasic(ArithVar basic, RaiseConflict& rc) const;
/** Gets a fresh variable from TheoryArith. */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback