summaryrefslogtreecommitdiff
path: root/src/main/driver_unified.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/driver_unified.cpp')
-rw-r--r--src/main/driver_unified.cpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/main/driver_unified.cpp b/src/main/driver_unified.cpp
index bf297ad9e..5fbd5aff5 100644
--- a/src/main/driver_unified.cpp
+++ b/src/main/driver_unified.cpp
@@ -40,7 +40,6 @@
# endif
#include "main/options.h"
#include "smt/options.h"
-#include "theory/uf/options.h"
#include "util/output.h"
#include "util/result.h"
#include "util/statistics_registry.h"
@@ -375,8 +374,18 @@ int runCvc4(int argc, char* argv[], Options& opts) {
status = pExecutor->doCommand(cmd);
needReset = true;
} else {
- Command* copy = cmd->clone();
- allCommands.back().push_back(copy);
+ // We shouldn't copy certain commands, because they can cause
+ // an error on replay since there's no associated sat/unsat check
+ // preceding them.
+ if(dynamic_cast<GetUnsatCoreCommand*>(cmd) == NULL &&
+ dynamic_cast<GetProofCommand*>(cmd) == NULL &&
+ dynamic_cast<GetValueCommand*>(cmd) == NULL &&
+ dynamic_cast<GetModelCommand*>(cmd) == NULL &&
+ dynamic_cast<GetAssignmentCommand*>(cmd) == NULL &&
+ dynamic_cast<GetInstantiationsCommand*>(cmd) == NULL) {
+ Command* copy = cmd->clone();
+ allCommands.back().push_back(copy);
+ }
status = pExecutor->doCommand(cmd);
if(dynamic_cast<QuitCommand*>(cmd) != NULL) {
delete cmd;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback