summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2010-02-28 00:43:32 +0000
committerTim King <taking@cs.nyu.edu>2010-02-28 00:43:32 +0000
commitda420bf5c1f2a270f072786145b717c38c720ed1 (patch)
treedd112cf23780211b5f188cd354980a5659819c93 /src/theory/theory.h
parentcc6802ff819de5643ab87afc0839b584ddad63b2 (diff)
TheoryUFWhite is passing. I fixed 2 errors. Unfortunately, I also changed a TNode to a Node at one point in the code. TNode failed for a completely unknown reason. I'm try to isolate the problem is a bit, but I am commiting this for now so other things can move forward.
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index efa67d6c4..86badb9bd 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -324,8 +324,8 @@ Node TheoryImpl<T>::get() {
* and the above registration of leaves, this should ensure that
* all subterms in the entire tree were registered in
* reverse-topological order. */
- for(std::list<TNode>::reverse_iterator i = toReg.rend();
- i != toReg.rbegin();
+ for(std::list<TNode>::reverse_iterator i = toReg.rbegin();
+ i != toReg.rend();
++i) {
TNode n = *i;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback