summaryrefslogtreecommitdiff
path: root/src/expr/node_builder.h
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-03-31 15:23:17 -0700
committerGitHub <noreply@github.com>2021-03-31 22:23:17 +0000
commita1466978fbc328507406d4a121dab4d1a1047e1d (patch)
tree12b40f161bb4d7a6ee40c20c78a15d6cda3c1995 /src/expr/node_builder.h
parentf9a9af855fb65804ff0b36e764ccd9d0fa9f87f8 (diff)
Rename namespace CVC4 to CVC5. (#6249)
Diffstat (limited to 'src/expr/node_builder.h')
-rw-r--r--src/expr/node_builder.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/expr/node_builder.h b/src/expr/node_builder.h
index 91b378c5f..724e03451 100644
--- a/src/expr/node_builder.h
+++ b/src/expr/node_builder.h
@@ -160,14 +160,14 @@
#include <memory>
#include <vector>
-namespace CVC4 {
- static const unsigned default_nchild_thresh = 10;
+namespace CVC5 {
+static const unsigned default_nchild_thresh = 10;
- template <unsigned nchild_thresh>
- class NodeBuilder;
+template <unsigned nchild_thresh>
+class NodeBuilder;
- class NodeManager;
-}/* CVC4 namespace */
+class NodeManager;
+} // namespace CVC5
#include "base/check.h"
#include "base/output.h"
@@ -175,7 +175,7 @@ namespace CVC4 {
#include "expr/metakind.h"
#include "expr/node_value.h"
-namespace CVC4 {
+namespace CVC5 {
// Sometimes it's useful for debugging to output a NodeBuilder that
// isn't yet a Node..
@@ -729,7 +729,7 @@ public:
};/* class NodeBuilder<> */
-}/* CVC4 namespace */
+} // namespace CVC5
// TODO: add templatized NodeTemplate<ref_count> to all above and
// below inlines for 'const [T]Node&' arguments? Technically a lot of
@@ -741,7 +741,7 @@ public:
#include "expr/node_manager.h"
#include "options/expr_options.h"
-namespace CVC4 {
+namespace CVC5 {
template <unsigned nchild_thresh>
void NodeBuilder<nchild_thresh>::clear(Kind k) {
@@ -1324,6 +1324,6 @@ std::ostream& operator<<(std::ostream& out, const NodeBuilder<nchild_thresh>& nb
return out << *nb.d_nv;
}
-}/* CVC4 namespace */
+} // namespace CVC5
#endif /* CVC4__NODE_BUILDER_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback