summaryrefslogtreecommitdiff
path: root/src/printer/smt2
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-10-05 22:07:16 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-10-05 22:07:16 +0000
commit4c87c0794b7e954afd090cfbf441caa0b09c3ef5 (patch)
treed0cfcf60cbf9600c52dcb728744802ad27a5c3e1 /src/printer/smt2
parent7a9899f394476e53b7f759e698c7e10c8388fd57 (diff)
BoolExpr removed and replaced with Expr
Diffstat (limited to 'src/printer/smt2')
-rw-r--r--src/printer/smt2/smt2_printer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/printer/smt2/smt2_printer.cpp b/src/printer/smt2/smt2_printer.cpp
index 5d9a13786..31754cb3a 100644
--- a/src/printer/smt2/smt2_printer.cpp
+++ b/src/printer/smt2/smt2_printer.cpp
@@ -615,7 +615,7 @@ static void toStream(std::ostream& out, const PopCommand* c) throw() {
}
static void toStream(std::ostream& out, const CheckSatCommand* c) throw() {
- BoolExpr e = c->getExpr();
+ Expr e = c->getExpr();
if(!e.isNull()) {
out << PushCommand() << endl
<< AssertCommand(e) << endl
@@ -627,7 +627,7 @@ static void toStream(std::ostream& out, const CheckSatCommand* c) throw() {
}
static void toStream(std::ostream& out, const QueryCommand* c) throw() {
- BoolExpr e = c->getExpr();
+ Expr e = c->getExpr();
if(!e.isNull()) {
out << PushCommand() << endl
<< AssertCommand(BooleanSimplification::negate(e)) << endl
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback