summaryrefslogtreecommitdiff
path: root/src/parser/cvc
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-05-21 17:52:26 -0500
committerAndres Noetzli <andres.noetzli@gmail.com>2018-05-21 15:52:26 -0700
commite50e09efa679c2d0c835cbf794a7b0743347552a (patch)
tree43b362a297ba4b460e38d38a3dca5ad6f5c582fc /src/parser/cvc
parent4e56fd1578c51544d879cf84a4ea48c5f09a1d97 (diff)
Improvements in parsing and printing related to mixed int/real (#1879)
This eliminates some hacks for dealing with Int/Real. - Eliminates the use of "to_real" to cast decimals like "2.0" that happen to be Int. We now replace these by (/ 2 1) instead of (to_real 2), which has the advantage of being smt-lib compliant for all theories, including QF_LRA. - Eliminates the use of a hack to use "type ascriptions" when returning values from a get-value command. Instead, we use division with 1 when necessary. This affects the output of a few regressions, but we remain smt-lib compliant. - Addresses a bug with printing arbitrary type ascriptions for smt2 terms. This partially addresses #1852. - Updates our printing of negative rationals to be (/ (- n) m) instead of (- (/ n m)), which is consistent with the smt lib standard for real values (http://smtlib.cs.uiowa.edu/theories-Reals.shtml).
Diffstat (limited to 'src/parser/cvc')
-rw-r--r--src/parser/cvc/Cvc.g5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/parser/cvc/Cvc.g b/src/parser/cvc/Cvc.g
index a4333c81d..5aa9079b9 100644
--- a/src/parser/cvc/Cvc.g
+++ b/src/parser/cvc/Cvc.g
@@ -2164,7 +2164,10 @@ simpleTerm[CVC4::Expr& f]
| DECIMAL_LITERAL {
f = MK_CONST(AntlrInput::tokenToRational($DECIMAL_LITERAL));
if(f.getType().isInteger()) {
- f = MK_EXPR(kind::TO_REAL, f);
+ // Must cast to Real to ensure correct type is passed to parametric type constructors.
+ // We do this cast using division with 1.
+ // This has the advantage wrt using TO_REAL since (constant) division is always included in the theory.
+ f = MK_EXPR(kind::DIVISION, f, MK_CONST(Rational(1)));
}
}
| INTEGER_LITERAL { f = MK_CONST(AntlrInput::tokenToInteger($INTEGER_LITERAL)); }
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback