X-Git-Url: http://plrg.eecs.uci.edu/git/?p=satune.git;a=blobdiff_plain;f=src%2FInterpreter%2Fsmtinterpreter.cc;h=778093155da4386b04520a0382ddb054788d3f0f;hp=82c887b244afa77156e97461382af4c395dc3a06;hb=88522b82efee075d4dbaf75e82231a399bcbb41c;hpb=e9ca288c7f0cf0f3bb9508c3cc9b212f557bcc40 diff --git a/src/Interpreter/smtinterpreter.cc b/src/Interpreter/smtinterpreter.cc index 82c887b..7780931 100644 --- a/src/Interpreter/smtinterpreter.cc +++ b/src/Interpreter/smtinterpreter.cc @@ -101,7 +101,8 @@ void SMTInterpreter::dumpHeader(){ } void SMTInterpreter::compileRunCommand(char * command, size_t size){ - snprintf(command, size, "./z3 -T:%u -in < %s > %s", getTimeout(), SMTFILENAME, SMTSOLUTIONFILE); + model_print("Calling Z3...\n"); + snprintf(command, size, "./run.sh z3 -T:%u -in < %s > %s", getTimeout(), SMTFILENAME, SMTSOLUTIONFILE); } string SMTInterpreter::negateConstraint(string constr){