summaryrefslogtreecommitdiff
path: root/src/theory/fp/theory_fp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/fp/theory_fp.cpp')
-rw-r--r--src/theory/fp/theory_fp.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/theory/fp/theory_fp.cpp b/src/theory/fp/theory_fp.cpp
index ea9ea902c..38444c7af 100644
--- a/src/theory/fp/theory_fp.cpp
+++ b/src/theory/fp/theory_fp.cpp
@@ -33,7 +33,7 @@
using namespace std;
-namespace CVC5 {
+namespace cvc5 {
namespace theory {
namespace fp {
@@ -774,7 +774,7 @@ void TheoryFp::convertAndEquateTerm(TNode node) {
NodeManager *nm = NodeManager::currentNM();
handleLemma(
- nm->mkNode(kind::EQUAL, addA, nm->mkConst(::CVC5::BitVector(1U, 1U))));
+ nm->mkNode(kind::EQUAL, addA, nm->mkConst(::cvc5::BitVector(1U, 1U))));
#endif
++oldAdditionalAssertions;
@@ -795,7 +795,7 @@ void TheoryFp::convertAndEquateTerm(TNode node) {
kind::EQUAL,
node,
nm->mkNode(
- kind::EQUAL, converted, nm->mkConst(::CVC5::BitVector(1U, 1U)))));
+ kind::EQUAL, converted, nm->mkConst(::cvc5::BitVector(1U, 1U)))));
#endif
} else {
@@ -1157,4 +1157,4 @@ void TheoryFp::NotifyClass::eqNotifyConstantTermMerge(TNode t1, TNode t2) {
} // namespace fp
} // namespace theory
-} // namespace CVC5
+} // namespace cvc5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback