#pragma once
-#include <boost/foreach.hpp>
-
#include "theory/sets/theory_sets.h"
#include "theory/sets/theory_sets_private.h"
}
}
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);
}
}/* CVC4::theory::sets namespace */
}/* CVC4::theory namespace */
}/* CVC4 namespace */
-