summaryrefslogtreecommitdiff
path: root/src/theory/substitutions.cpp
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-06-06 16:03:37 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-06-06 16:03:37 +0000
commitb8d08b54a0dc3e05cf557e9f5f0d375b1330fed6 (patch)
tree2096790181e12977c0b784bfd63e8d2c475a1ced /src/theory/substitutions.cpp
parentfd9e22c4a2e57c3dfeda4de3842a3fb3ca4776ba (diff)
disabling a super-expensive assertions to speed up debug runs
Diffstat (limited to 'src/theory/substitutions.cpp')
-rw-r--r--src/theory/substitutions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/substitutions.cpp b/src/theory/substitutions.cpp
index f56dd47b6..df4c919d8 100644
--- a/src/theory/substitutions.cpp
+++ b/src/theory/substitutions.cpp
@@ -168,7 +168,7 @@ Node SubstitutionMap::apply(TNode t) {
Node result = internalSubstitute(t, d_substitutionCache);
Debug("substitution") << "SubstitutionMap::apply(" << t << ") => " << result << std::endl;
- Assert(check(result, d_substitutions));
+// Assert(check(result, d_substitutions));
return result;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback