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, 5 insertions, 4 deletions
diff --git a/src/theory/arith/constraint.h b/src/theory/arith/constraint.h
index 225bf555e..17b4fa4e3 100644
--- a/src/theory/arith/constraint.h
+++ b/src/theory/arith/constraint.h
@@ -496,15 +496,16 @@ class Constraint {
/**
* @brief Returns whether this constraint is provable using a Farkas
- * proof that has input assertions as its antecedents.
+ * proof applied to (possibly tightened) input assertions.
*
* An example of a constraint that has a simple Farkas proof:
* x <= 0 proven from x + y <= 0 and x - y <= 0.
*
- * An example of a constraint that does not have a simple Farkas proof:
+ * An example of another constraint that has a simple Farkas proof:
* x <= 0 proven from x + y <= 0 and x - y <= 0.5 for integers x, y
- * (since integer reasoning is also required!).
- * Another example of a constraint that might be proven without a simple
+ * (integer bound-tightening is applied first!).
+ *
+ * An example of a constraint that might be proven **without** a simple
* Farkas proof:
* x < 0 proven from not(x == 0) and not(x > 0).
*
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback