From: Tim King Date: Thu, 3 Jun 2010 18:35:15 +0000 (+0000) Subject: Adds toString to DeltaRational X-Git-Tag: cvc5-1.0.0~9004 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9e43f4ea07dc7d20be5ce31e8569bbfda4069432;p=cvc5.git Adds toString to DeltaRational --- diff --git a/src/theory/arith/delta_rational.cpp b/src/theory/arith/delta_rational.cpp index 90529529a..0c94b1d08 100644 --- a/src/theory/arith/delta_rational.cpp +++ b/src/theory/arith/delta_rational.cpp @@ -8,3 +8,9 @@ std::ostream& CVC4::operator<<(std::ostream& os, const DeltaRational& dq){ return os << "(" << dq.getNoninfintestimalPart() << "," << dq.getInfintestimalPart() << ")"; } + + +std::string DeltaRational::toString() const { + return "(" + getNoninfintestimalPart().toString() + "," + + getInfintestimalPart().toString() + ")"; +} diff --git a/src/theory/arith/delta_rational.h b/src/theory/arith/delta_rational.h index c84a28e3d..4b6e06bc5 100644 --- a/src/theory/arith/delta_rational.h +++ b/src/theory/arith/delta_rational.h @@ -89,6 +89,9 @@ public: return *(this); } + + std::string toString() const; + }; std::ostream& operator<<(std::ostream& os, const DeltaRational& n);