summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes/non_clausal_simp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/preprocessing/passes/non_clausal_simp.cpp')
-rw-r--r--src/preprocessing/passes/non_clausal_simp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/preprocessing/passes/non_clausal_simp.cpp b/src/preprocessing/passes/non_clausal_simp.cpp
index e5b0cd39b..8992dad5e 100644
--- a/src/preprocessing/passes/non_clausal_simp.cpp
+++ b/src/preprocessing/passes/non_clausal_simp.cpp
@@ -131,7 +131,7 @@ PreprocessingPassResult NonClausalSimp::applyInternal(
// No conflict, go through the literals and solve them
context::Context* u = d_preprocContext->getUserContext();
TrustSubstitutionMap& ttls = d_preprocContext->getTopLevelSubstitutions();
- CVC4_UNUSED SubstitutionMap& top_level_substs = ttls.get();
+ CVC5_UNUSED SubstitutionMap& top_level_substs = ttls.get();
// constant propagations
std::shared_ptr<TrustSubstitutionMap> constantPropagations =
std::make_shared<TrustSubstitutionMap>(
@@ -261,7 +261,7 @@ PreprocessingPassResult NonClausalSimp::applyInternal(
}
}
-#ifdef CVC4_ASSERTIONS
+#ifdef CVC5_ASSERTIONS
// NOTE: When debugging this code, consider moving this check inside of the
// loop over propagator->getLearnedLiterals(). This check has been moved
// outside because it is costly for certain inputs (see bug 508).
@@ -288,7 +288,7 @@ PreprocessingPassResult NonClausalSimp::applyInternal(
Assert(Rewriter::rewrite((*pos).first) == (*pos).first);
Assert(cps.apply((*pos).second) == (*pos).second);
}
-#endif /* CVC4_ASSERTIONS */
+#endif /* CVC5_ASSERTIONS */
// Resize the learnt
Trace("non-clausal-simplify")
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback