summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.nyu.edu>2012-06-14 17:55:08 +0000
committerClark Barrett <barrett@cs.nyu.edu>2012-06-14 17:55:08 +0000
commit86b8b53afbbd2259e297709c99d594a79927184a (patch)
tree6a2b6c3601fca13d2de5f23c16f3f553afcf4dc3
parent4c956f292906c59ba77c000084a08a4e7888e49b (diff)
Removed an assertion, unneeded header file
-rw-r--r--src/smt/smt_engine.cpp2
-rw-r--r--src/theory/valuation.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 5e51900a9..6771b8cd5 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -1052,7 +1052,7 @@ void SmtEnginePrivate::nonClausalSimplify() {
SubstitutionMap::iterator pos = d_topLevelSubstitutions.begin();
for (; pos != d_topLevelSubstitutions.end(); ++pos) {
Assert((*pos).first.isVar());
- Assert(d_topLevelSubstitutions.apply((*pos).second) == (*pos).second);
+ // Assert(d_topLevelSubstitutions.apply((*pos).second) == (*pos).second);
}
for (pos = constantPropagations.begin(); pos != constantPropagations.end(); ++pos) {
Assert((*pos).second.isConst());
diff --git a/src/theory/valuation.h b/src/theory/valuation.h
index dd3848e7f..11467c8db 100644
--- a/src/theory/valuation.h
+++ b/src/theory/valuation.h
@@ -24,7 +24,6 @@
#define __CVC4__THEORY__VALUATION_H
#include "expr/node.h"
-#include "theory/substitutions.h"
namespace CVC4 {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback