summaryrefslogtreecommitdiff
path: root/src/prop/sat_proof_manager.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/prop/sat_proof_manager.cpp
parent550c49a7dd2b13ea29743458336f0c0a0fb6099a (diff)
Rename CVC4_ macros to CVC5_. (#6327)
Diffstat (limited to 'src/prop/sat_proof_manager.cpp')
-rw-r--r--src/prop/sat_proof_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/prop/sat_proof_manager.cpp b/src/prop/sat_proof_manager.cpp
index 0d075de45..ec29d6bd5 100644
--- a/src/prop/sat_proof_manager.cpp
+++ b/src/prop/sat_proof_manager.cpp
@@ -352,7 +352,7 @@ void SatProofManager::explainLit(
printClause(reason);
Trace("sat-proof") << "\n";
}
-#ifdef CVC4_ASSERTIONS
+#ifdef CVC5_ASSERTIONS
// pedantically check that the negation of the literal to explain *does not*
// occur in the reason, otherwise we will loop forever
for (unsigned i = 0; i < size; ++i)
@@ -372,7 +372,7 @@ void SatProofManager::explainLit(
Trace("sat-proof") << push;
for (unsigned i = 0; i < size; ++i)
{
-#ifdef CVC4_ASSERTIONS
+#ifdef CVC5_ASSERTIONS
// pedantically make sure that the reason stays the same
const Minisat::Clause& reloadedReason = d_solver->ca[reasonRef];
AlwaysAssert(size == static_cast<unsigned>(reloadedReason.size()));
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback