summaryrefslogtreecommitdiff
path: root/src/main/command_executor.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2014-08-23 01:13:49 -0400
committerMorgan Deters <mdeters@cs.nyu.edu>2014-08-23 01:13:49 -0400
commitba9a2a34e37f856774662b50a09b3a1d3b9ae89f (patch)
treecaf86e6e41f9fe5f2337a6e475511a12a6e010fb /src/main/command_executor.cpp
parentc5092d63f3e304b892195f641a04cf02c6e686a9 (diff)
Some fixes for dump- and get-unsat-core.
Diffstat (limited to 'src/main/command_executor.cpp')
-rw-r--r--src/main/command_executor.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/command_executor.cpp b/src/main/command_executor.cpp
index 5b90ca14f..8f51c6d0d 100644
--- a/src/main/command_executor.cpp
+++ b/src/main/command_executor.cpp
@@ -134,6 +134,9 @@ bool CommandExecutor::doCommandSingleton(Command* cmd)
} else if( d_options[options::dumpInstantiations] &&
res.asSatisfiabilityResult() == Result::UNSAT ) {
g = new GetInstantiationsCommand();
+ } else if( d_options[options::dumpUnsatCores] &&
+ res.asSatisfiabilityResult() == Result::UNSAT ) {
+ g = new GetUnsatCoreCommand();
}
if( g ){
//set no time limit during dumping if applicable
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback