summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes/non_clausal_simp.cpp
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-04-09 17:22:07 -0700
committerGitHub <noreply@github.com>2021-04-09 17:22:07 -0700
commitf87f038c5f0821d0fefb01cea00bfdec6004da91 (patch)
treed948178e1c0d2dc459a976f0d187d2d41a5437c0 /src/preprocessing/passes/non_clausal_simp.cpp
parent550c49a7dd2b13ea29743458336f0c0a0fb6099a (diff)
Rename CVC4_ macros to CVC5_. (#6327)
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