summaryrefslogtreecommitdiff
path: root/src/util/trans_closure.h
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.nyu.edu>2011-04-11 17:33:07 +0000
committerClark Barrett <barrett@cs.nyu.edu>2011-04-11 17:33:07 +0000
commita8ff3563d965e1220d6603becab09f446cc00d35 (patch)
tree75d8ebc97625e5e7932cfda7793893913d788f5b /src/util/trans_closure.h
parenta2602bd3e3ee90d50cb433e01b029d1176b4cc18 (diff)
Transitive closure module is working
Diffstat (limited to 'src/util/trans_closure.h')
-rw-r--r--src/util/trans_closure.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/trans_closure.h b/src/util/trans_closure.h
index 922e29afc..56951d531 100644
--- a/src/util/trans_closure.h
+++ b/src/util/trans_closure.h
@@ -107,8 +107,9 @@ public:
TransitiveClosure(context::Context* context) : d_context(context) {}
~TransitiveClosure();
- /* Add an edge from node i to node j. Return true if successful, false if this edge would create a cycle */
+ /* Add an edge from node i to node j. Return false if successful, true if this edge would create a cycle */
bool addEdge(unsigned i, unsigned j);
+ void debugPrintMatrix();
};
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback