summaryrefslogtreecommitdiff
path: root/src/theory/arith/arith_ite_utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/arith_ite_utils.cpp')
-rw-r--r--src/theory/arith/arith_ite_utils.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/theory/arith/arith_ite_utils.cpp b/src/theory/arith/arith_ite_utils.cpp
index fa6fd108c..42189f86a 100644
--- a/src/theory/arith/arith_ite_utils.cpp
+++ b/src/theory/arith/arith_ite_utils.cpp
@@ -30,7 +30,7 @@
using namespace std;
-namespace CVC4 {
+namespace CVC5 {
namespace theory {
namespace arith {
@@ -47,7 +47,7 @@ Node ArithIteUtils::applyReduceVariablesInItes(Node n){
}
Node ArithIteUtils::reduceVariablesInItes(Node n){
- using namespace CVC4::kind;
+ using namespace CVC5::kind;
if(d_reduceVar.find(n) != d_reduceVar.end()){
Node res = d_reduceVar[n];
return res.isNull() ? n : res;
@@ -455,7 +455,6 @@ bool ArithIteUtils::solveBinOr(TNode binor){
return false;
}
-
-}/* CVC4::theory::arith namespace */
-}/* CVC4::theory namespace */
-}/* CVC4 namespace */
+} // namespace arith
+} // namespace theory
+} // namespace CVC5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback