summaryrefslogtreecommitdiff
path: root/src/proof/sat_proof_implementation.h
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-04-01 09:56:14 -0700
committerGitHub <noreply@github.com>2021-04-01 16:56:14 +0000
commit05a53a2ac405bcd18a84024247145f161809c3b0 (patch)
tree34241c0a82f79d717ddbfbb0c294f9a09c7edb0c /src/proof/sat_proof_implementation.h
parentafaf4413775ff7d6054a5893f1397ad908e0773c (diff)
Rename namespace CVC5 to cvc5. (#6258)
Diffstat (limited to 'src/proof/sat_proof_implementation.h')
-rw-r--r--src/proof/sat_proof_implementation.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/proof/sat_proof_implementation.h b/src/proof/sat_proof_implementation.h
index 6049c4876..c2bbf6f11 100644
--- a/src/proof/sat_proof_implementation.h
+++ b/src/proof/sat_proof_implementation.h
@@ -26,7 +26,7 @@
#include "prop/sat_solver_types.h"
#include "smt/smt_statistics_registry.h"
-namespace CVC5 {
+namespace cvc5 {
template <class Solver>
void printLit(typename Solver::TLit l) {
@@ -1040,12 +1040,12 @@ TSatProof<Solver>::Statistics::~Statistics() {
smtStatisticsRegistry()->unregisterStat(&d_usedClauseGlue);
}
-inline std::ostream& operator<<(std::ostream& out, CVC5::ClauseKind k)
+inline std::ostream& operator<<(std::ostream& out, cvc5::ClauseKind k)
{
switch (k) {
- case CVC5::INPUT: out << "INPUT"; break;
- case CVC5::THEORY_LEMMA: out << "THEORY_LEMMA"; break;
- case CVC5::LEARNT: out << "LEARNT"; break;
+ case cvc5::INPUT: out << "INPUT"; break;
+ case cvc5::THEORY_LEMMA: out << "THEORY_LEMMA"; break;
+ case cvc5::LEARNT: out << "LEARNT"; break;
default:
out << "ClauseKind Unknown! [" << unsigned(k) << "]";
}
@@ -1053,6 +1053,6 @@ inline std::ostream& operator<<(std::ostream& out, CVC5::ClauseKind k)
return out;
}
-} // namespace CVC5
+} // namespace cvc5
#endif /* CVC4__SAT__PROOF_IMPLEMENTATION_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback