summaryrefslogtreecommitdiff
path: root/src/printer/cvc
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/printer/cvc
parentafaf4413775ff7d6054a5893f1397ad908e0773c (diff)
Rename namespace CVC5 to cvc5. (#6258)
Diffstat (limited to 'src/printer/cvc')
-rw-r--r--src/printer/cvc/cvc_printer.cpp4
-rw-r--r--src/printer/cvc/cvc_printer.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/src/printer/cvc/cvc_printer.cpp b/src/printer/cvc/cvc_printer.cpp
index 867bc204a..1556ee74d 100644
--- a/src/printer/cvc/cvc_printer.cpp
+++ b/src/printer/cvc/cvc_printer.cpp
@@ -42,7 +42,7 @@
using namespace std;
-namespace CVC5 {
+namespace cvc5 {
namespace printer {
namespace cvc {
@@ -1614,4 +1614,4 @@ void CvcPrinter::toStreamNodeWithLetify(std::ostream& out,
} // namespace cvc
} // namespace printer
-} // namespace CVC5
+} // namespace cvc5
diff --git a/src/printer/cvc/cvc_printer.h b/src/printer/cvc/cvc_printer.h
index 2b240568e..f7458c3f5 100644
--- a/src/printer/cvc/cvc_printer.h
+++ b/src/printer/cvc/cvc_printer.h
@@ -23,17 +23,17 @@
#include "printer/printer.h"
-namespace CVC5 {
+namespace cvc5 {
class LetBinding;
namespace printer {
namespace cvc {
-class CvcPrinter : public CVC5::Printer
+class CvcPrinter : public cvc5::Printer
{
public:
- using CVC5::Printer::toStream;
+ using cvc5::Printer::toStream;
CvcPrinter(bool cvc3Mode = false) : d_cvc3Mode(cvc3Mode) {}
void toStream(std::ostream& out,
TNode n,
@@ -204,6 +204,6 @@ class CvcPrinter : public CVC5::Printer
} // namespace cvc
} // namespace printer
-} // namespace CVC5
+} // namespace cvc5
#endif /* CVC4__PRINTER__CVC_PRINTER_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback