1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Kshitij Bansal, Andrew Reynolds, Morgan Deters |
4 |
|
* |
5 |
|
* This file is part of the cvc5 project. |
6 |
|
* |
7 |
|
* Copyright (c) 2009-2021 by the authors listed in the file AUTHORS |
8 |
|
* in the top-level source directory and their institutional affiliations. |
9 |
|
* All rights reserved. See the file COPYING in the top-level source |
10 |
|
* directory for licensing information. |
11 |
|
* **************************************************************************** |
12 |
|
* |
13 |
|
* An additional layer between commands and invoking them. |
14 |
|
*/ |
15 |
|
|
16 |
|
#include "main/command_executor.h" |
17 |
|
|
18 |
|
#ifndef __WIN32__ |
19 |
|
# include <sys/resource.h> |
20 |
|
#endif /* ! __WIN32__ */ |
21 |
|
|
22 |
|
#include <iomanip> |
23 |
|
#include <iostream> |
24 |
|
#include <memory> |
25 |
|
#include <string> |
26 |
|
#include <vector> |
27 |
|
|
28 |
|
#include "main/main.h" |
29 |
|
#include "smt/command.h" |
30 |
|
#include "smt/smt_engine.h" |
31 |
|
|
32 |
|
namespace cvc5 { |
33 |
|
namespace main { |
34 |
|
|
35 |
|
// Function to cancel any (externally-imposed) limit on CPU time. |
36 |
|
// This is used for competitions while a solution (proof or model) |
37 |
|
// is being dumped (so that we don't give "sat" or "unsat" then get |
38 |
|
// interrupted partway through outputting a proof!). |
39 |
|
void setNoLimitCPU() { |
40 |
|
// Windows doesn't have these things, just ignore |
41 |
|
#ifndef __WIN32__ |
42 |
|
struct rlimit rlc; |
43 |
|
int st = getrlimit(RLIMIT_CPU, &rlc); |
44 |
|
if(st == 0) { |
45 |
|
rlc.rlim_cur = rlc.rlim_max; |
46 |
|
setrlimit(RLIMIT_CPU, &rlc); |
47 |
|
} |
48 |
|
#endif /* ! __WIN32__ */ |
49 |
|
} |
50 |
|
|
51 |
5880 |
CommandExecutor::CommandExecutor(Options& options) |
52 |
5881 |
: d_solver(new api::Solver(&options)), |
53 |
5879 |
d_symman(new SymbolManager(d_solver.get())), |
54 |
|
d_options(options), |
55 |
17638 |
d_result() |
56 |
|
{ |
57 |
5879 |
} |
58 |
17637 |
CommandExecutor::~CommandExecutor() |
59 |
|
{ |
60 |
|
// ensure that symbol manager is destroyed before solver |
61 |
5879 |
d_symman.reset(nullptr); |
62 |
5879 |
d_solver.reset(nullptr); |
63 |
11758 |
} |
64 |
|
|
65 |
5859 |
void CommandExecutor::printStatistics(std::ostream& out) const |
66 |
|
{ |
67 |
5859 |
if (d_options.getStatistics()) |
68 |
|
{ |
69 |
|
getSmtEngine()->printStatistics(out); |
70 |
|
} |
71 |
5859 |
} |
72 |
|
|
73 |
|
void CommandExecutor::printStatisticsSafe(int fd) const |
74 |
|
{ |
75 |
|
if (d_options.getStatistics()) |
76 |
|
{ |
77 |
|
getSmtEngine()->printStatisticsSafe(fd); |
78 |
|
} |
79 |
|
} |
80 |
|
|
81 |
306318 |
bool CommandExecutor::doCommand(Command* cmd) |
82 |
|
{ |
83 |
306318 |
if( d_options.getParseOnly() ) { |
84 |
|
return true; |
85 |
|
} |
86 |
|
|
87 |
306318 |
CommandSequence *seq = dynamic_cast<CommandSequence*>(cmd); |
88 |
306318 |
if(seq != nullptr) { |
89 |
|
// assume no error |
90 |
5124 |
bool status = true; |
91 |
|
|
92 |
13057 |
for (CommandSequence::iterator subcmd = seq->begin(); |
93 |
13057 |
status && subcmd != seq->end(); |
94 |
|
++subcmd) |
95 |
|
{ |
96 |
7933 |
status = doCommand(*subcmd); |
97 |
|
} |
98 |
|
|
99 |
5124 |
return status; |
100 |
|
} else { |
101 |
301194 |
if(d_options.getVerbosity() > 2) { |
102 |
11 |
*d_options.getOut() << "Invoking: " << *cmd << std::endl; |
103 |
|
} |
104 |
|
|
105 |
301194 |
return doCommandSingleton(cmd); |
106 |
|
} |
107 |
|
} |
108 |
|
|
109 |
|
void CommandExecutor::reset() |
110 |
|
{ |
111 |
|
printStatistics(*d_options.getErr()); |
112 |
|
/* We have to keep options passed via CL on reset. These options are stored |
113 |
|
* in CommandExecutor::d_options (populated and created in the driver), and |
114 |
|
* CommandExecutor::d_options only contains *these* options since the |
115 |
|
* NodeManager copies the options into a new options object before SmtEngine |
116 |
|
* configures additional options based on the given CL options. |
117 |
|
* We can thus safely reuse CommandExecutor::d_options here. */ |
118 |
|
d_solver.reset(new api::Solver(&d_options)); |
119 |
|
} |
120 |
|
|
121 |
301222 |
bool CommandExecutor::doCommandSingleton(Command* cmd) |
122 |
|
{ |
123 |
301222 |
bool status = true; |
124 |
301222 |
if(d_options.getVerbosity() >= -1) { |
125 |
301222 |
status = |
126 |
301222 |
solverInvoke(d_solver.get(), d_symman.get(), cmd, d_options.getOut()); |
127 |
|
} else { |
128 |
|
status = solverInvoke(d_solver.get(), d_symman.get(), cmd, nullptr); |
129 |
|
} |
130 |
|
|
131 |
602444 |
api::Result res; |
132 |
301222 |
const CheckSatCommand* cs = dynamic_cast<const CheckSatCommand*>(cmd); |
133 |
301222 |
if(cs != nullptr) { |
134 |
8850 |
d_result = res = cs->getResult(); |
135 |
|
} |
136 |
|
const CheckSatAssumingCommand* csa = |
137 |
301222 |
dynamic_cast<const CheckSatAssumingCommand*>(cmd); |
138 |
301222 |
if (csa != nullptr) |
139 |
|
{ |
140 |
990 |
d_result = res = csa->getResult(); |
141 |
|
} |
142 |
301222 |
const QueryCommand* q = dynamic_cast<const QueryCommand*>(cmd); |
143 |
301222 |
if(q != nullptr) { |
144 |
612 |
d_result = res = q->getResult(); |
145 |
|
} |
146 |
|
|
147 |
301222 |
if((cs != nullptr || q != nullptr) && d_options.getStatsEveryQuery()) { |
148 |
|
getSmtEngine()->printStatisticsDiff(*d_options.getErr()); |
149 |
|
} |
150 |
|
|
151 |
301222 |
bool isResultUnsat = res.isUnsat() || res.isEntailed(); |
152 |
|
|
153 |
|
// dump the model/proof/unsat core if option is set |
154 |
301222 |
if (status) { |
155 |
602374 |
std::vector<std::unique_ptr<Command> > getterCommands; |
156 |
602374 |
if (d_options.getDumpModels() |
157 |
301197 |
&& (res.isSat() |
158 |
34 |
|| (res.isSatUnknown() |
159 |
|
&& res.getUnknownExplanation() == api::Result::INCOMPLETE))) |
160 |
|
{ |
161 |
10 |
getterCommands.emplace_back(new GetModelCommand()); |
162 |
|
} |
163 |
301187 |
if (d_options.getDumpProofs() && isResultUnsat) |
164 |
|
{ |
165 |
|
getterCommands.emplace_back(new GetProofCommand()); |
166 |
|
} |
167 |
|
|
168 |
602374 |
if (d_options.getDumpInstantiations() |
169 |
301202 |
&& ((d_options.getInstFormatMode() != options::InstFormatMode::SZS |
170 |
153 |
&& (res.isSat() |
171 |
153 |
|| (res.isSatUnknown() |
172 |
|
&& res.getUnknownExplanation() |
173 |
|
== api::Result::INCOMPLETE))) |
174 |
153 |
|| isResultUnsat)) |
175 |
|
{ |
176 |
15 |
getterCommands.emplace_back(new GetInstantiationsCommand()); |
177 |
|
} |
178 |
|
|
179 |
301187 |
if (d_options.getDumpUnsatCores() && isResultUnsat) |
180 |
|
{ |
181 |
3 |
getterCommands.emplace_back(new GetUnsatCoreCommand()); |
182 |
|
} |
183 |
|
|
184 |
301187 |
if (!getterCommands.empty()) { |
185 |
|
// set no time limit during dumping if applicable |
186 |
28 |
if (d_options.getForceNoLimitCpuWhileDump()) { |
187 |
|
setNoLimitCPU(); |
188 |
|
} |
189 |
56 |
for (const auto& getterCommand : getterCommands) { |
190 |
28 |
status = doCommandSingleton(getterCommand.get()); |
191 |
28 |
if (!status) |
192 |
|
{ |
193 |
|
break; |
194 |
|
} |
195 |
|
} |
196 |
|
} |
197 |
|
} |
198 |
602444 |
return status; |
199 |
|
} |
200 |
|
|
201 |
301222 |
bool solverInvoke(api::Solver* solver, |
202 |
|
SymbolManager* sm, |
203 |
|
Command* cmd, |
204 |
|
std::ostream* out) |
205 |
|
{ |
206 |
301222 |
if (out == NULL) |
207 |
|
{ |
208 |
|
cmd->invoke(solver, sm); |
209 |
|
} |
210 |
|
else |
211 |
|
{ |
212 |
301222 |
cmd->invoke(solver, sm, *out); |
213 |
|
} |
214 |
|
// ignore the error if the command-verbosity is 0 for this command |
215 |
|
std::string commandName = |
216 |
602444 |
std::string("command-verbosity:") + cmd->getCommandName(); |
217 |
301222 |
if (solver->getOption(commandName) == "0") |
218 |
|
{ |
219 |
|
return true; |
220 |
|
} |
221 |
301222 |
return !cmd->fail(); |
222 |
|
} |
223 |
|
|
224 |
5859 |
void CommandExecutor::flushOutputStreams() { |
225 |
5859 |
printStatistics(*(d_options.getErr())); |
226 |
|
|
227 |
|
// make sure out and err streams are flushed too |
228 |
5859 |
d_options.flushOut(); |
229 |
5859 |
d_options.flushErr(); |
230 |
5859 |
} |
231 |
|
|
232 |
|
} // namespace main |
233 |
28173 |
} // namespace cvc5 |