3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-11 12:11:25 +00:00

Fix typos and bugs. Add tests.

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-01-04 15:01:27 -08:00
parent ff62948d90
commit 14827e94f0
4 changed files with 144 additions and 30 deletions

View file

@ -362,6 +362,10 @@ inline std::ostream & operator<<(std::ostream & out, rc_decimal_pp const & n) {
return out;
}
inline rc_decimal_pp decimal_pp(scoped_rcnumeral const & n, unsigned prec = 10) {
return rc_decimal_pp(n, prec);
}
struct rc_interval_pp {
rcmanager & m;
rcnumeral const & n;
@ -374,7 +378,7 @@ inline std::ostream & operator<<(std::ostream & out, rc_interval_pp const & n) {
return out;
}
inline rc_interval_pp interval_pp(rc_interval_pp const & n) {
inline rc_interval_pp interval_pp(scoped_rcnumeral const & n) {
return rc_interval_pp(n);
}