1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Andrew Reynolds, Haniel Barbosa, Aina Niemetz |
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 |
|
* Implementation of proof node manager. |
14 |
|
*/ |
15 |
|
|
16 |
|
#include "proof/proof_node_manager.h" |
17 |
|
|
18 |
|
#include <sstream> |
19 |
|
|
20 |
|
#include "options/proof_options.h" |
21 |
|
#include "proof/proof.h" |
22 |
|
#include "proof/proof_checker.h" |
23 |
|
#include "proof/proof_node.h" |
24 |
|
#include "proof/proof_node_algorithm.h" |
25 |
|
#include "theory/rewriter.h" |
26 |
|
|
27 |
|
using namespace cvc5::kind; |
28 |
|
|
29 |
|
namespace cvc5 { |
30 |
|
|
31 |
7987 |
ProofNodeManager::ProofNodeManager(theory::Rewriter* rr, ProofChecker* pc) |
32 |
7987 |
: d_rewriter(rr), d_checker(pc) |
33 |
|
{ |
34 |
7987 |
d_true = NodeManager::currentNM()->mkConst(true); |
35 |
|
// we always allocate a proof checker, regardless of the proof checking mode |
36 |
7987 |
Assert(d_checker != nullptr); |
37 |
7987 |
} |
38 |
|
|
39 |
18961583 |
std::shared_ptr<ProofNode> ProofNodeManager::mkNode( |
40 |
|
PfRule id, |
41 |
|
const std::vector<std::shared_ptr<ProofNode>>& children, |
42 |
|
const std::vector<Node>& args, |
43 |
|
Node expected) |
44 |
|
{ |
45 |
37923166 |
Trace("pnm") << "ProofNodeManager::mkNode " << id << " {" << expected.getId() |
46 |
18961583 |
<< "} " << expected << "\n"; |
47 |
18961583 |
bool didCheck = false; |
48 |
37923166 |
Node res = checkInternal(id, children, args, expected, didCheck); |
49 |
18961583 |
if (res.isNull()) |
50 |
|
{ |
51 |
|
// if it was invalid, then we return the null node |
52 |
|
return nullptr; |
53 |
|
} |
54 |
|
// otherwise construct the proof node and set its proven field |
55 |
|
std::shared_ptr<ProofNode> pn = |
56 |
37923166 |
std::make_shared<ProofNode>(id, children, args); |
57 |
18961583 |
pn->d_proven = res; |
58 |
18961583 |
pn->d_provenChecked = didCheck; |
59 |
18961583 |
return pn; |
60 |
|
} |
61 |
|
|
62 |
9986899 |
std::shared_ptr<ProofNode> ProofNodeManager::mkAssume(Node fact) |
63 |
|
{ |
64 |
9986899 |
Assert(!fact.isNull()); |
65 |
9986899 |
Assert(fact.getType().isBoolean()); |
66 |
9986899 |
return mkNode(PfRule::ASSUME, {}, {fact}, fact); |
67 |
|
} |
68 |
|
|
69 |
330037 |
std::shared_ptr<ProofNode> ProofNodeManager::mkSymm( |
70 |
|
std::shared_ptr<ProofNode> child, Node expected) |
71 |
|
{ |
72 |
330037 |
if (child->getRule() == PfRule::SYMM) |
73 |
|
{ |
74 |
222 |
Assert(expected.isNull() |
75 |
|
|| child->getChildren()[0]->getResult() == expected); |
76 |
222 |
return child->getChildren()[0]; |
77 |
|
} |
78 |
329815 |
return mkNode(PfRule::SYMM, {child}, {}, expected); |
79 |
|
} |
80 |
|
|
81 |
277 |
std::shared_ptr<ProofNode> ProofNodeManager::mkTrans( |
82 |
|
const std::vector<std::shared_ptr<ProofNode>>& children, Node expected) |
83 |
|
{ |
84 |
277 |
Assert(!children.empty()); |
85 |
277 |
if (children.size() == 1) |
86 |
|
{ |
87 |
|
Assert(expected.isNull() || children[0]->getResult() == expected); |
88 |
|
return children[0]; |
89 |
|
} |
90 |
277 |
return mkNode(PfRule::TRANS, children, {}, expected); |
91 |
|
} |
92 |
|
|
93 |
194105 |
std::shared_ptr<ProofNode> ProofNodeManager::mkScope( |
94 |
|
std::shared_ptr<ProofNode> pf, |
95 |
|
std::vector<Node>& assumps, |
96 |
|
bool ensureClosed, |
97 |
|
bool doMinimize, |
98 |
|
Node expected) |
99 |
|
{ |
100 |
194105 |
if (!ensureClosed) |
101 |
|
{ |
102 |
58499 |
return mkNode(PfRule::SCOPE, {pf}, assumps, expected); |
103 |
|
} |
104 |
135606 |
Trace("pnm-scope") << "ProofNodeManager::mkScope " << assumps << std::endl; |
105 |
|
// we first ensure the assumptions are flattened |
106 |
271212 |
std::unordered_set<Node> ac{assumps.begin(), assumps.end()}; |
107 |
|
// map from the rewritten form of assumptions to the original. This is only |
108 |
|
// computed in the rare case when we need rewriting to match the |
109 |
|
// assumptions. An example of this is for Boolean constant equalities in |
110 |
|
// scoped proofs from the proof equality engine. |
111 |
271212 |
std::unordered_map<Node, Node> acr; |
112 |
|
// whether we have compute the map above |
113 |
135606 |
bool computedAcr = false; |
114 |
|
|
115 |
|
// The free assumptions of the proof |
116 |
271212 |
std::map<Node, std::vector<std::shared_ptr<ProofNode>>> famap; |
117 |
135606 |
expr::getFreeAssumptionsMap(pf, famap); |
118 |
271212 |
std::unordered_set<Node> acu; |
119 |
569968 |
for (const std::pair<const Node, std::vector<std::shared_ptr<ProofNode>>>& |
120 |
135606 |
fa : famap) |
121 |
|
{ |
122 |
1139936 |
Node a = fa.first; |
123 |
1016762 |
if (ac.find(a) != ac.end()) |
124 |
|
{ |
125 |
|
// already covered by an assumption |
126 |
446794 |
acu.insert(a); |
127 |
446794 |
continue; |
128 |
|
} |
129 |
|
// trivial assumption |
130 |
123174 |
if (a == d_true) |
131 |
|
{ |
132 |
|
Trace("pnm-scope") << "- justify trivial True assumption\n"; |
133 |
|
for (std::shared_ptr<ProofNode> pfs : fa.second) |
134 |
|
{ |
135 |
|
Assert(pfs->getResult() == a); |
136 |
|
updateNode(pfs.get(), PfRule::MACRO_SR_PRED_INTRO, {}, {a}); |
137 |
|
} |
138 |
|
Trace("pnm-scope") << "...finished" << std::endl; |
139 |
|
acu.insert(a); |
140 |
|
continue; |
141 |
|
} |
142 |
123174 |
Trace("pnm-scope") << "- try matching free assumption " << a << "\n"; |
143 |
|
// otherwise it may be due to symmetry? |
144 |
246348 |
Node aeqSym = CDProof::getSymmFact(a); |
145 |
123174 |
Trace("pnm-scope") << " - try sym " << aeqSym << "\n"; |
146 |
246348 |
Node aMatch; |
147 |
123174 |
if (!aeqSym.isNull() && ac.count(aeqSym)) |
148 |
|
{ |
149 |
244516 |
Trace("pnm-scope") << "- reorient assumption " << aeqSym << " via " << a |
150 |
244516 |
<< " for " << fa.second.size() << " proof nodes" |
151 |
122258 |
<< std::endl; |
152 |
122258 |
aMatch = aeqSym; |
153 |
|
} |
154 |
|
else |
155 |
|
{ |
156 |
|
// Otherwise, may be derivable by rewriting. Note this is used in |
157 |
|
// ensuring that proofs from the proof equality engine that involve |
158 |
|
// equality with Boolean constants are closed. |
159 |
916 |
if (!computedAcr) |
160 |
|
{ |
161 |
329 |
computedAcr = true; |
162 |
5412 |
for (const Node& acc : ac) |
163 |
|
{ |
164 |
10166 |
Node accr = d_rewriter->rewrite(acc); |
165 |
5083 |
if (accr != acc) |
166 |
|
{ |
167 |
1912 |
acr[accr] = acc; |
168 |
|
} |
169 |
|
} |
170 |
|
} |
171 |
1832 |
Node ar = d_rewriter->rewrite(a); |
172 |
916 |
std::unordered_map<Node, Node>::iterator itr = acr.find(ar); |
173 |
916 |
if (itr != acr.end()) |
174 |
|
{ |
175 |
916 |
aMatch = itr->second; |
176 |
|
} |
177 |
|
} |
178 |
|
|
179 |
|
// if we found a match either by symmetry or rewriting, then we connect |
180 |
|
// the assumption here. |
181 |
123174 |
if (!aMatch.isNull()) |
182 |
|
{ |
183 |
246348 |
std::shared_ptr<ProofNode> pfaa = mkAssume(aMatch); |
184 |
|
// must correct the orientation on this leaf |
185 |
246348 |
std::vector<std::shared_ptr<ProofNode>> children; |
186 |
123174 |
children.push_back(pfaa); |
187 |
246348 |
for (std::shared_ptr<ProofNode> pfs : fa.second) |
188 |
|
{ |
189 |
123174 |
Assert(pfs->getResult() == a); |
190 |
|
// use SYMM if possible |
191 |
123174 |
if (aMatch == aeqSym) |
192 |
|
{ |
193 |
122258 |
if (pfaa->getRule() == PfRule::SYMM) |
194 |
|
{ |
195 |
|
updateNode(pfs.get(), pfaa->getChildren()[0].get()); |
196 |
|
} |
197 |
|
else |
198 |
|
{ |
199 |
122258 |
updateNode(pfs.get(), PfRule::SYMM, children, {}); |
200 |
|
} |
201 |
|
} |
202 |
|
else |
203 |
|
{ |
204 |
916 |
updateNode(pfs.get(), PfRule::MACRO_SR_PRED_TRANSFORM, children, {a}); |
205 |
|
} |
206 |
|
} |
207 |
123174 |
Trace("pnm-scope") << "...finished" << std::endl; |
208 |
123174 |
acu.insert(aMatch); |
209 |
123174 |
continue; |
210 |
|
} |
211 |
|
// If we did not find a match, it is an error, since all free assumptions |
212 |
|
// should be arguments to SCOPE. |
213 |
|
std::stringstream ss; |
214 |
|
|
215 |
|
bool dumpProofTraceOn = Trace.isOn("dump-proof-error"); |
216 |
|
if (dumpProofTraceOn) |
217 |
|
{ |
218 |
|
ss << "The proof : " << *pf << std::endl; |
219 |
|
} |
220 |
|
ss << std::endl << "Free assumption: " << a << std::endl; |
221 |
|
for (const Node& aprint : ac) |
222 |
|
{ |
223 |
|
ss << "- assumption: " << aprint << std::endl; |
224 |
|
} |
225 |
|
if (!dumpProofTraceOn) |
226 |
|
{ |
227 |
|
ss << "Use -t dump-proof-error for details on proof" << std::endl; |
228 |
|
} |
229 |
|
Unreachable() << "Generated a proof that is not closed by the scope: " |
230 |
|
<< ss.str() << std::endl; |
231 |
|
} |
232 |
135606 |
if (acu.size() < ac.size()) |
233 |
|
{ |
234 |
|
// All assumptions should match a free assumption; if one does not, then |
235 |
|
// the explanation could have been smaller. |
236 |
48166 |
for (const Node& a : ac) |
237 |
|
{ |
238 |
43649 |
if (acu.find(a) == acu.end()) |
239 |
|
{ |
240 |
57890 |
Trace("pnm") << "ProofNodeManager::mkScope: assumption " << a |
241 |
28945 |
<< " does not match a free assumption in proof" |
242 |
28945 |
<< std::endl; |
243 |
|
} |
244 |
|
} |
245 |
|
} |
246 |
135606 |
if (doMinimize && acu.size() < ac.size()) |
247 |
|
{ |
248 |
3473 |
assumps.clear(); |
249 |
3473 |
assumps.insert(assumps.end(), acu.begin(), acu.end()); |
250 |
|
} |
251 |
132133 |
else if (ac.size() < assumps.size()) |
252 |
|
{ |
253 |
|
// remove duplicates to avoid redundant literals in clauses |
254 |
677 |
assumps.clear(); |
255 |
677 |
assumps.insert(assumps.end(), ac.begin(), ac.end()); |
256 |
|
} |
257 |
271212 |
Node minExpected; |
258 |
135606 |
NodeManager* nm = NodeManager::currentNM(); |
259 |
271212 |
Node exp; |
260 |
135606 |
if (assumps.empty()) |
261 |
|
{ |
262 |
|
// SCOPE with no arguments is a no-op, just return original |
263 |
2778 |
return pf; |
264 |
|
} |
265 |
265656 |
Node conc = pf->getResult(); |
266 |
132828 |
exp = assumps.size() == 1 ? assumps[0] : nm->mkNode(AND, assumps); |
267 |
132828 |
if (conc.isConst() && !conc.getConst<bool>()) |
268 |
|
{ |
269 |
49335 |
minExpected = exp.notNode(); |
270 |
|
} |
271 |
|
else |
272 |
|
{ |
273 |
83493 |
minExpected = nm->mkNode(IMPLIES, exp, conc); |
274 |
|
} |
275 |
132828 |
return mkNode(PfRule::SCOPE, {pf}, assumps, minExpected); |
276 |
|
} |
277 |
|
|
278 |
193065 |
bool ProofNodeManager::updateNode( |
279 |
|
ProofNode* pn, |
280 |
|
PfRule id, |
281 |
|
const std::vector<std::shared_ptr<ProofNode>>& children, |
282 |
|
const std::vector<Node>& args) |
283 |
|
{ |
284 |
193065 |
return updateNodeInternal(pn, id, children, args, true); |
285 |
|
} |
286 |
|
|
287 |
2183557 |
bool ProofNodeManager::updateNode(ProofNode* pn, ProofNode* pnr) |
288 |
|
{ |
289 |
2183557 |
Assert(pn != nullptr); |
290 |
2183557 |
Assert(pnr != nullptr); |
291 |
2183557 |
if (pn == pnr) |
292 |
|
{ |
293 |
|
// same node, no update necessary |
294 |
2187 |
return true; |
295 |
|
} |
296 |
2181370 |
if (pn->getResult() != pnr->getResult()) |
297 |
|
{ |
298 |
|
return false; |
299 |
|
} |
300 |
|
// copy whether we did the check |
301 |
2181370 |
pn->d_provenChecked = pnr->d_provenChecked; |
302 |
|
// can shortcut re-check of rule |
303 |
2181370 |
return updateNodeInternal( |
304 |
2181370 |
pn, pnr->getRule(), pnr->getChildren(), pnr->getArguments(), false); |
305 |
|
} |
306 |
|
|
307 |
2491408 |
void ProofNodeManager::ensureChecked(ProofNode* pn) |
308 |
|
{ |
309 |
2491408 |
if (pn->d_provenChecked) |
310 |
|
{ |
311 |
|
// already checked |
312 |
113975 |
return; |
313 |
|
} |
314 |
|
// directly call the proof checker |
315 |
4754866 |
Node res = d_checker->check(pn, pn->getResult()); |
316 |
2377433 |
pn->d_provenChecked = true; |
317 |
|
// should have the correct result |
318 |
2377433 |
Assert(res == pn->d_proven); |
319 |
|
} |
320 |
|
|
321 |
19154648 |
Node ProofNodeManager::checkInternal( |
322 |
|
PfRule id, |
323 |
|
const std::vector<std::shared_ptr<ProofNode>>& children, |
324 |
|
const std::vector<Node>& args, |
325 |
|
Node expected, |
326 |
|
bool& didCheck) |
327 |
|
{ |
328 |
|
// if the user supplied an expected result, then we trust it if we are in |
329 |
|
// a proof checking mode that does not eagerly check rule applications |
330 |
19154648 |
if (!expected.isNull()) |
331 |
|
{ |
332 |
36044200 |
if (options::proofCheck() == options::ProofCheckMode::LAZY |
333 |
18022100 |
|| options::proofCheck() == options::ProofCheckMode::NONE) |
334 |
|
{ |
335 |
18019288 |
return expected; |
336 |
|
} |
337 |
|
} |
338 |
|
// check with the checker, which takes expected as argument |
339 |
2270720 |
Node res = d_checker->check(id, children, args, expected); |
340 |
1135360 |
didCheck = true; |
341 |
1135360 |
Assert(!res.isNull()) |
342 |
|
<< "ProofNodeManager::checkInternal: failed to check proof"; |
343 |
1135360 |
return res; |
344 |
|
} |
345 |
|
|
346 |
10918195 |
ProofChecker* ProofNodeManager::getChecker() const { return d_checker; } |
347 |
|
|
348 |
61531 |
std::shared_ptr<ProofNode> ProofNodeManager::clone( |
349 |
|
std::shared_ptr<ProofNode> pn) const |
350 |
|
{ |
351 |
61531 |
const ProofNode* orig = pn.get(); |
352 |
123062 |
std::unordered_map<const ProofNode*, std::shared_ptr<ProofNode>> visited; |
353 |
61531 |
std::unordered_map<const ProofNode*, std::shared_ptr<ProofNode>>::iterator it; |
354 |
123062 |
std::vector<const ProofNode*> visit; |
355 |
123062 |
std::shared_ptr<ProofNode> cloned; |
356 |
61531 |
visit.push_back(orig); |
357 |
|
const ProofNode* cur; |
358 |
3967285 |
while (!visit.empty()) |
359 |
|
{ |
360 |
1952877 |
cur = visit.back(); |
361 |
1952877 |
it = visited.find(cur); |
362 |
1952877 |
if (it == visited.end()) |
363 |
|
{ |
364 |
909630 |
visited[cur] = nullptr; |
365 |
|
const std::vector<std::shared_ptr<ProofNode>>& children = |
366 |
909630 |
cur->getChildren(); |
367 |
1891346 |
for (const std::shared_ptr<ProofNode>& cp : children) |
368 |
|
{ |
369 |
981716 |
visit.push_back(cp.get()); |
370 |
|
} |
371 |
909630 |
continue; |
372 |
|
} |
373 |
1043247 |
visit.pop_back(); |
374 |
1043247 |
if (it->second.get() == nullptr) |
375 |
|
{ |
376 |
1819260 |
std::vector<std::shared_ptr<ProofNode>> cchildren; |
377 |
|
const std::vector<std::shared_ptr<ProofNode>>& children = |
378 |
909630 |
cur->getChildren(); |
379 |
1891346 |
for (const std::shared_ptr<ProofNode>& cp : children) |
380 |
|
{ |
381 |
981716 |
it = visited.find(cp.get()); |
382 |
981716 |
Assert(it != visited.end()); |
383 |
|
// if we encounter nullptr here, then this child is currently being |
384 |
|
// traversed at a higher level, hence this corresponds to a cyclic |
385 |
|
// proof. |
386 |
981716 |
if (it->second == nullptr) |
387 |
|
{ |
388 |
|
Unreachable() << "Cyclic proof encountered when cloning a proof node"; |
389 |
|
} |
390 |
981716 |
cchildren.push_back(it->second); |
391 |
|
} |
392 |
1819260 |
cloned = std::make_shared<ProofNode>( |
393 |
1819260 |
cur->getRule(), cchildren, cur->getArguments()); |
394 |
909630 |
visited[cur] = cloned; |
395 |
|
// we trust the above cloning does not change what is proven |
396 |
909630 |
cloned->d_proven = cur->d_proven; |
397 |
909630 |
cloned->d_provenChecked = cur->d_provenChecked; |
398 |
|
} |
399 |
|
} |
400 |
61531 |
Assert(visited.find(orig) != visited.end()); |
401 |
123062 |
return visited[orig]; |
402 |
|
} |
403 |
|
|
404 |
270255 |
ProofNode* ProofNodeManager::cancelDoubleSymm(ProofNode* pn) |
405 |
|
{ |
406 |
271376 |
while (pn->getRule() == PfRule::SYMM) |
407 |
|
{ |
408 |
270255 |
std::shared_ptr<ProofNode> pnc = pn->getChildren()[0]; |
409 |
269134 |
if (pnc->getRule() == PfRule::SYMM) |
410 |
|
{ |
411 |
1121 |
pn = pnc->getChildren()[0].get(); |
412 |
|
} |
413 |
|
else |
414 |
|
{ |
415 |
268013 |
break; |
416 |
|
} |
417 |
|
} |
418 |
269134 |
return pn; |
419 |
|
} |
420 |
|
|
421 |
2374435 |
bool ProofNodeManager::updateNodeInternal( |
422 |
|
ProofNode* pn, |
423 |
|
PfRule id, |
424 |
|
const std::vector<std::shared_ptr<ProofNode>>& children, |
425 |
|
const std::vector<Node>& args, |
426 |
|
bool needsCheck) |
427 |
|
{ |
428 |
2374435 |
Assert(pn != nullptr); |
429 |
|
// ---------------- check for cyclic |
430 |
2374435 |
if (options::proofCheck() == options::ProofCheckMode::EAGER) |
431 |
|
{ |
432 |
1024 |
std::unordered_set<const ProofNode*> visited; |
433 |
720 |
for (const std::shared_ptr<ProofNode>& cpc : children) |
434 |
|
{ |
435 |
208 |
if (expr::containsSubproof(cpc.get(), pn, visited)) |
436 |
|
{ |
437 |
|
std::stringstream ss; |
438 |
|
ss << "ProofNodeManager::updateNode: attempting to make cyclic proof! " |
439 |
|
<< id << " " << pn->getResult() << ", children = " << std::endl; |
440 |
|
for (const std::shared_ptr<ProofNode>& cp : children) |
441 |
|
{ |
442 |
|
ss << " " << cp->getRule() << " " << cp->getResult() << std::endl; |
443 |
|
} |
444 |
|
ss << "Full children:" << std::endl; |
445 |
|
for (const std::shared_ptr<ProofNode>& cp : children) |
446 |
|
{ |
447 |
|
ss << " - "; |
448 |
|
cp->printDebug(ss); |
449 |
|
ss << std::endl; |
450 |
|
} |
451 |
|
Unreachable() << ss.str(); |
452 |
|
} |
453 |
|
} |
454 |
|
} |
455 |
|
// ---------------- end check for cyclic |
456 |
|
|
457 |
|
// should have already computed what is proven |
458 |
2374435 |
Assert(!pn->d_proven.isNull()) |
459 |
|
<< "ProofNodeManager::updateProofNode: invalid proof provided"; |
460 |
2374435 |
if (needsCheck) |
461 |
|
{ |
462 |
|
// We expect to prove the same thing as before |
463 |
193065 |
bool didCheck = false; |
464 |
386130 |
Node res = checkInternal(id, children, args, pn->d_proven, didCheck); |
465 |
193065 |
if (res.isNull()) |
466 |
|
{ |
467 |
|
// if it was invalid, then we do not update |
468 |
|
return false; |
469 |
|
} |
470 |
|
// proven field should already be the same as the result |
471 |
193065 |
Assert(res == pn->d_proven); |
472 |
193065 |
pn->d_provenChecked = didCheck; |
473 |
|
} |
474 |
|
|
475 |
|
// we update its value |
476 |
2374435 |
pn->setValue(id, children, args); |
477 |
2374435 |
return true; |
478 |
|
} |
479 |
|
|
480 |
31137 |
} // namespace cvc5 |