summaryrefslogtreecommitdiff
path: root/src/theory/arith/delta_rational.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/delta_rational.cpp')
-rw-r--r--src/theory/arith/delta_rational.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/theory/arith/delta_rational.cpp b/src/theory/arith/delta_rational.cpp
new file mode 100644
index 000000000..90529529a
--- /dev/null
+++ b/src/theory/arith/delta_rational.cpp
@@ -0,0 +1,10 @@
+
+#include "theory/arith/delta_rational.h"
+
+using namespace std;
+using namespace CVC4;
+
+std::ostream& CVC4::operator<<(std::ostream& os, const DeltaRational& dq){
+ return os << "(" << dq.getNoninfintestimalPart()
+ << "," << dq.getInfintestimalPart() << ")";
+}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback