summaryrefslogtreecommitdiff
path: root/src/smt/command.cpp
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/smt/command.cpp
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/smt/command.cpp')
-rw-r--r--src/smt/command.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/smt/command.cpp b/src/smt/command.cpp
index 847221979..f8e28a994 100644
--- a/src/smt/command.cpp
+++ b/src/smt/command.cpp
@@ -1408,12 +1408,10 @@ void GetValueCommand::invoke(SmtEngine* smtEngine)
Node value = Node::fromExpr(smtEngine->getValue(e));
if (value.getType().isInteger() && request.getType() == nm->realType())
{
- // Need to wrap in special marker so that output printers know this
+ // Need to wrap in division-by-one so that output printers know this
// is an integer-looking constant that really should be output as
- // a rational. Necessary for SMT-LIB standards compliance, but ugly.
- value = nm->mkNode(kind::APPLY_TYPE_ASCRIPTION,
- nm->mkConst(AscriptionType(em->realType())),
- value);
+ // a rational. Necessary for SMT-LIB standards compliance.
+ value = nm->mkNode(kind::DIVISION, value, nm->mkConst(Rational(1)));
}
result.push_back(nm->mkNode(kind::SEXPR, request, value).toExpr());
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback