From da420bf5c1f2a270f072786145b717c38c720ed1 Mon Sep 17 00:00:00 2001 From: Tim King Date: Sun, 28 Feb 2010 00:43:32 +0000 Subject: 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. --- src/theory/theory.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/theory/theory.h') 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::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::reverse_iterator i = toReg.rend(); - i != toReg.rbegin(); + for(std::list::reverse_iterator i = toReg.rbegin(); + i != toReg.rend(); ++i) { TNode n = *i; -- cgit v1.2.3