summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim King <taking@google.com>2016-08-31 15:55:06 -0700
committerTim King <taking@google.com>2016-08-31 15:55:06 -0700
commit3634816bd90d12557d38340117cda8f92be2f328 (patch)
tree63a38a33b59aec998a8ad6296214aa0f4ade3962
parent16d27018ed668adbeaddc68795a3f0cbcc48a1e9 (diff)
Removing BOOST_FOREACH from theory/sets/scrutinize.h.
-rw-r--r--src/theory/sets/scrutinize.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/theory/sets/scrutinize.h b/src/theory/sets/scrutinize.h
index 2ada4a3ce..88f6001b9 100644
--- a/src/theory/sets/scrutinize.h
+++ b/src/theory/sets/scrutinize.h
@@ -17,8 +17,6 @@
#pragma once
-#include <boost/foreach.hpp>
-
#include "theory/sets/theory_sets.h"
#include "theory/sets/theory_sets_private.h"
@@ -55,7 +53,8 @@ public:
}
}
bool checkPassed = true;
- BOOST_FOREACH(TNode term, terms) {
+ for (std::set<Node>::const_iterator it = terms.begin(); it != terms.end(); it++){
+ TNode term = *it;
if( term.getType().isSet() ) {
checkPassed &= d_theory->checkModel(settermElementsMap, term);
}
@@ -72,4 +71,3 @@ public:
}/* CVC4::theory::sets namespace */
}/* CVC4::theory namespace */
}/* CVC4 namespace */
-
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback