summaryrefslogtreecommitdiff
path: root/src/prop/sat_solver_factory.cpp
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-04-15 13:04:55 -0700
committerGitHub <noreply@github.com>2021-04-15 20:04:55 +0000
commit77bca094a140b35341257f125a55212ff0108250 (patch)
tree1d3369b9be5fc4c3e8cb279ae5ea662e59cbcb3e /src/prop/sat_solver_factory.cpp
parent63647b1d79df6f287ea6599958b16fce44b8271d (diff)
Rename occurrences of CVC4 to CVC5. (#6351)
This renames everything but GitHub links and build system related macros. Switching the build system to cvc5 will be the last step in the renaming process.
Diffstat (limited to 'src/prop/sat_solver_factory.cpp')
-rw-r--r--src/prop/sat_solver_factory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/prop/sat_solver_factory.cpp b/src/prop/sat_solver_factory.cpp
index a1b89b836..446f72451 100644
--- a/src/prop/sat_solver_factory.cpp
+++ b/src/prop/sat_solver_factory.cpp
@@ -46,7 +46,7 @@ SatSolver* SatSolverFactory::createCryptoMinisat(StatisticsRegistry& registry,
res->init();
return res;
#else
- Unreachable() << "CVC4 was not compiled with Cryptominisat support.";
+ Unreachable() << "cvc5 was not compiled with Cryptominisat support.";
#endif
}
@@ -58,7 +58,7 @@ SatSolver* SatSolverFactory::createCadical(StatisticsRegistry& registry,
res->init();
return res;
#else
- Unreachable() << "CVC4 was not compiled with CaDiCaL support.";
+ Unreachable() << "cvc5 was not compiled with CaDiCaL support.";
#endif
}
@@ -70,7 +70,7 @@ SatSolver* SatSolverFactory::createKissat(StatisticsRegistry& registry,
res->init();
return res;
#else
- Unreachable() << "CVC4 was not compiled with Kissat support.";
+ Unreachable() << "cvc5 was not compiled with Kissat support.";
#endif
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback