summaryrefslogtreecommitdiff
path: root/src/parser/smt/Smt.g
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/smt/Smt.g')
-rw-r--r--src/parser/smt/Smt.g8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/parser/smt/Smt.g b/src/parser/smt/Smt.g
index ba5e8abf5..2dd680f09 100644
--- a/src/parser/smt/Smt.g
+++ b/src/parser/smt/Smt.g
@@ -236,14 +236,12 @@ annotatedFormula[CVC4::Expr& expr]
| TRUE_TOK { expr = MK_CONST(true); }
| FALSE_TOK { expr = MK_CONST(false); }
| NUMERAL_TOK
- { Integer num( Input::tokenText($NUMERAL_TOK) );
- expr = MK_CONST(num); }
+ { expr = MK_CONST( Input::tokenToInteger($NUMERAL_TOK) ); }
| RATIONAL_TOK
{ // FIXME: This doesn't work because an SMT rational is not a valid GMP rational string
- Rational rat( Input::tokenText($RATIONAL_TOK) );
- expr = MK_CONST(rat); }
+ expr = MK_CONST( Input::tokenToRational($RATIONAL_TOK) ); }
// NOTE: Theory constants go here
- /* TODO: let, flet, quantifiers, arithmetic constants */
+ /* TODO: quantifiers, arithmetic constants */
;
/**
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback