summaryrefslogtreecommitdiff
path: root/src/theory/bv
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-03-20 18:16:26 -0400
committerMorgan Deters <mdeters@cs.nyu.edu>2013-04-01 16:11:24 -0400
commitb6ad34343d0a09de37dc4e5ff57cd8625dca3fc4 (patch)
treed4aa8da10c6ad99c46d7f8c1fd824f2d7566ef4e /src/theory/bv
parentcba10a096d97e82bd112b4d99a6ebe399d1369d6 (diff)
Merging some cleanup work:
* Comment cleanup * Spelling fixes * Fix warnings * Documentation updates * References in docs to cryptominisat removed * Unneeded scope resolutions removed * Old, unused regression removed
Diffstat (limited to 'src/theory/bv')
-rw-r--r--src/theory/bv/bv_inequality_graph.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/bv/bv_inequality_graph.cpp b/src/theory/bv/bv_inequality_graph.cpp
index 499d362a9..ec4b223cf 100644
--- a/src/theory/bv/bv_inequality_graph.cpp
+++ b/src/theory/bv/bv_inequality_graph.cpp
@@ -30,7 +30,7 @@ const ReasonId CVC4::theory::bv::AxiomReasonId = -2;
bool InequalityGraph::addInequality(TNode a, TNode b, bool strict, TNode reason) {
- Debug("bv-inequality") << "InequlityGraph::addInequality " << a << " " << b << " strict: " << strict << "\n";
+ Debug("bv-inequality") << "InequalityGraph::addInequality " << a << " " << b << " strict: " << strict << "\n";
TermId id_a = registerTerm(a);
TermId id_b = registerTerm(b);
@@ -121,7 +121,7 @@ bool InequalityGraph::processQueue(BFSQueue& queue, TermId start) {
while (!queue.empty()) {
TermId current = queue.top();
queue.pop();
- Debug("bv-inequality-internal") << "InequalityGraph::processQueue proceessing " << getTermNode(current) << "\n";
+ Debug("bv-inequality-internal") << "InequalityGraph::processQueue processing " << getTermNode(current) << "\n";
BitVector current_value = getValue(current);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback