summaryrefslogtreecommitdiff
path: root/src/util/command.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2009-12-08 10:10:20 +0000
committerMorgan Deters <mdeters@gmail.com>2009-12-08 10:10:20 +0000
commit2163539a8b839acf98bda0e1a65f1fcca5232fb2 (patch)
tree207a09896626f678172ec774459defa6690b0200 /src/util/command.cpp
parentabe5fb451ae66a4bedc88d870e99f76de4eb323c (diff)
work on propositional layer, expression builder support for large expressions, output classes, and minisat
Diffstat (limited to 'src/util/command.cpp')
-rw-r--r--src/util/command.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/command.cpp b/src/util/command.cpp
index 190f794da..c78fbc089 100644
--- a/src/util/command.cpp
+++ b/src/util/command.cpp
@@ -31,7 +31,7 @@ AssertCommand::AssertCommand(const Expr& e) :
}
void AssertCommand::invoke(SmtEngine* smt_engine) {
- smt_engine->assert(d_expr);
+ smt_engine->assertFormula(d_expr);
}
CheckSatCommand::CheckSatCommand() {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback