summaryrefslogtreecommitdiff
path: root/src/theory/arith/constraint.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-07-07 21:01:33 +0000
committerMorgan Deters <mdeters@gmail.com>2012-07-07 21:01:33 +0000
commit8b01efc32d61391d8d3cd2aaac0de49cd8e88ecc (patch)
tree9e61b253a66fc91ca86b11bc1cabae9e1a7394da /src/theory/arith/constraint.h
parent8166b6cef258b198d0ffc97d125da3c85acf9708 (diff)
Various fixes to documentation---typos, some incomplete documentation fixed, \file tags corrected, copyright added to files that had it missing, etc.
I ensured that I didn't change any code with this commit, and even tested on the cluster to be doubly sure: http://church.cims.nyu.edu/regress-results/compare_jobs.php?job_id=4655&reference_id=4646&p=0
Diffstat (limited to 'src/theory/arith/constraint.h')
-rw-r--r--src/theory/arith/constraint.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/theory/arith/constraint.h b/src/theory/arith/constraint.h
index be4197a26..56fa5dcdf 100644
--- a/src/theory/arith/constraint.h
+++ b/src/theory/arith/constraint.h
@@ -243,7 +243,7 @@ private:
*
* This is not context dependent, but may be set once.
*
- * This must be set if the constraint canbePropgated().
+ * This must be set if the constraint canBePropagated().
* This must be set if the constraint assertedToTheTheory().
* Otherwise, this may be null().
*/
@@ -290,7 +290,7 @@ private:
/**
* True if the equality has been split.
- * Only meaningful if ContraintType == Equality.
+ * Only meaningful if ConstraintType == Equality.
*
* User Context Dependent.
* This is initially false.
@@ -490,7 +490,7 @@ public:
/**
* Returns a explanation of the constraint that is appropriate for conflicts.
*
- * This is not appropraite for propagation!
+ * This is not appropriate for propagation!
*
* This is the minimum fringe of the implication tree s.t.
* every constraint is assertedToTheTheory() or hasEqualityEngineProof().
@@ -507,7 +507,7 @@ public:
* This is the minimum fringe of the implication tree s.t.
* every constraint is assertedToTheTheory() or hasEqualityEngineProof().
*
- * This is not appropraite for propagation!
+ * This is not appropriate for propagation!
* Use explainForPropagation() instead.
*/
void explainForConflict(NodeBuilder<>& nb) const{
@@ -587,7 +587,7 @@ public:
void propagate(const std::vector<Constraint>& b);
/**
* The only restriction is that this is not known be true.
- * This propgates if there is a node.
+ * This propagates if there is a node.
*/
void impliedBy(Constraint a);
void impliedBy(Constraint a, Constraint b);
@@ -829,7 +829,7 @@ public:
* If no such constraint exists, NullConstraint is returned.
*
* t must be either UpperBound or LowerBound.
- * The returned value v is dominatated:
+ * The returned value v is dominated:
* If t is UpperBound, r <= v
* If t is LowerBound, r >= v
*/
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback