GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/smt/preprocess_proof_generator.cpp Lines: 110 118 93.2 %
Date: 2021-09-18 Branches: 245 552 44.4 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Andrew Reynolds, Gereon Kremer
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
 * The implementation of the module for proofs for preprocessing in an
14
 * SMT engine.
15
 */
16
17
#include "smt/preprocess_proof_generator.h"
18
19
#include <sstream>
20
21
#include "options/proof_options.h"
22
#include "proof/method_id.h"
23
#include "proof/proof.h"
24
#include "proof/proof_checker.h"
25
#include "proof/proof_node.h"
26
#include "theory/quantifiers/extended_rewrite.h"
27
#include "theory/rewriter.h"
28
29
namespace cvc5 {
30
namespace smt {
31
32
7588
PreprocessProofGenerator::PreprocessProofGenerator(ProofNodeManager* pnm,
33
                                                   context::Context* c,
34
                                                   std::string name,
35
                                                   PfRule ra,
36
7588
                                                   PfRule rpp)
37
    : d_pnm(pnm),
38
7588
      d_ctx(c ? c : &d_context),
39
      d_src(d_ctx),
40
      d_helperProofs(pnm, d_ctx),
41
      d_inputPf(pnm, c, "InputProof"),
42
      d_name(name),
43
      d_ra(ra),
44
15176
      d_rpp(rpp)
45
{
46
7588
}
47
48
37471
void PreprocessProofGenerator::notifyInput(Node n)
49
{
50
37471
  notifyNewAssert(n, &d_inputPf);
51
37471
}
52
53
84342
void PreprocessProofGenerator::notifyNewAssert(Node n, ProofGenerator* pg)
54
{
55
84342
  if (n.isConst() && n.getConst<bool>())
56
  {
57
    // ignore true assertions
58
5509
    return;
59
  }
60
157666
  Trace("smt-proof-pp-debug")
61
157666
      << "PreprocessProofGenerator::notifyNewAssert: " << identify() << " " << n
62
78833
      << " from " << (pg == nullptr ? "null" : pg->identify()) << std::endl;
63
78833
  if (d_src.find(n) == d_src.end())
64
  {
65
    // if no proof generator provided for (non-true) assertion
66
76169
    if (pg == nullptr)
67
    {
68
304
      checkEagerPedantic(d_ra);
69
    }
70
76169
    d_src[n] = TrustNode::mkTrustLemma(n, pg);
71
  }
72
  else
73
  {
74
2664
    Trace("smt-proof-pp-debug") << "...already proven" << std::endl;
75
  }
76
}
77
78
28239
void PreprocessProofGenerator::notifyNewTrustedAssert(TrustNode tn)
79
{
80
28239
  notifyNewAssert(tn.getProven(), tn.getGenerator());
81
28239
}
82
83
32419
void PreprocessProofGenerator::notifyPreprocessed(Node n,
84
                                                  Node np,
85
                                                  ProofGenerator* pg)
86
{
87
  // only do anything if indeed it rewrote
88
32419
  if (n == np)
89
  {
90
    return;
91
  }
92
  // call the trusted version
93
32419
  notifyTrustedPreprocessed(TrustNode::mkTrustRewrite(n, np, pg));
94
}
95
96
47546
void PreprocessProofGenerator::notifyTrustedPreprocessed(TrustNode tnp)
97
{
98
47546
  if (tnp.isNull())
99
  {
100
    // no rewrite, nothing to do
101
    return;
102
  }
103
47546
  Assert(tnp.getKind() == TrustNodeKind::REWRITE);
104
95092
  Node np = tnp.getNode();
105
95092
  Trace("smt-proof-pp-debug")
106
47546
      << "PreprocessProofGenerator::notifyPreprocessed: " << tnp << std::endl;
107
47546
  if (d_src.find(np) == d_src.end())
108
  {
109
40283
    if (tnp.getGenerator() == nullptr)
110
    {
111
2196
      checkEagerPedantic(d_rpp);
112
    }
113
40283
    d_src[np] = tnp;
114
  }
115
  else
116
  {
117
7263
    Trace("smt-proof-pp-debug") << "...already proven" << std::endl;
118
  }
119
}
120
121
55925
std::shared_ptr<ProofNode> PreprocessProofGenerator::getProofFor(Node f)
122
{
123
111850
  Trace("smt-pppg") << "PreprocessProofGenerator::getProofFor: (" << d_name
124
55925
                    << ") input " << f << std::endl;
125
55925
  NodeTrustNodeMap::iterator it = d_src.find(f);
126
55925
  if (it == d_src.end())
127
  {
128
33678
    Trace("smt-pppg") << "...no proof for " << identify() << " " << f
129
16839
                      << std::endl;
130
    // could be an assumption, return nullptr
131
16839
    return nullptr;
132
  }
133
  // make CDProof to construct the proof below
134
78172
  CDProof cdp(d_pnm);
135
136
78172
  Node curr = f;
137
78172
  std::vector<Node> transChildren;
138
78172
  std::unordered_set<Node> processed;
139
  bool success;
140
  // we connect the proof of f to its source via the map d_src until we
141
  // discover that its source is a preprocessing lemma (a lemma stored in d_src)
142
  // or otherwise it is assumed to be an input assumption.
143
52218
  do
144
  {
145
52218
    success = false;
146
52218
    if (it != d_src.end())
147
    {
148
52218
      Assert((*it).second.getNode() == curr);
149
      // get the proven node
150
104436
      Node proven = (*it).second.getProven();
151
52218
      Assert(!proven.isNull());
152
52218
      Trace("smt-pppg") << "...process proven " << proven << std::endl;
153
52218
      if (processed.find(proven) != processed.end())
154
      {
155
        Unhandled() << "Cyclic steps in preprocess proof generator";
156
        continue;
157
      }
158
52218
      processed.insert(proven);
159
52218
      bool proofStepProcessed = false;
160
161
      // if a generator for the step was provided, it is stored in the proof
162
104436
      Trace("smt-pppg-debug")
163
52218
          << "...get provided proof " << (*it).second << std::endl;
164
104436
      std::shared_ptr<ProofNode> pfr = (*it).second.toProofNode();
165
52218
      if (pfr != nullptr)
166
      {
167
51387
        Trace("smt-pppg-debug") << "...add provided " << *pfr << std::endl;
168
51387
        Assert(pfr->getResult() == proven);
169
51387
        cdp.addProof(pfr);
170
51387
        proofStepProcessed = true;
171
      }
172
173
52218
      Trace("smt-pppg-debug") << "...update" << std::endl;
174
52218
      TrustNodeKind tnk = (*it).second.getKind();
175
52218
      if (tnk == TrustNodeKind::REWRITE)
176
      {
177
26264
        Trace("smt-pppg-debug")
178
13132
            << "...rewritten from " << proven[0] << std::endl;
179
13132
        Assert(proven.getKind() == kind::EQUAL);
180
13132
        if (!proofStepProcessed)
181
        {
182
          // maybe its just an (extended) rewrite?
183
1432
          Node pr = theory::Rewriter::callExtendedRewrite(proven[0]);
184
716
          if (proven[1] == pr)
185
          {
186
16
            Node idr = mkMethodId(MethodId::RW_EXT_REWRITE);
187
8
            Trace("smt-pppg-debug") << "...add simple rewrite" << std::endl;
188
8
            cdp.addStep(proven, PfRule::REWRITE, {}, {proven[0], idr});
189
8
            proofStepProcessed = true;
190
          }
191
        }
192
13132
        transChildren.push_back(proven);
193
        // continue with source
194
13132
        curr = proven[0];
195
13132
        success = true;
196
        // find the next node
197
13132
        Trace("smt-pppg") << "...continue " << curr << std::endl;
198
13132
        it = d_src.find(curr);
199
      }
200
      else
201
      {
202
39086
        Trace("smt-pppg") << "...lemma" << std::endl;
203
39086
        Assert(tnk == TrustNodeKind::LEMMA);
204
      }
205
206
52218
      if (!proofStepProcessed)
207
      {
208
1646
        Trace("smt-pppg-debug")
209
823
            << "...justify missing step with "
210
823
            << (tnk == TrustNodeKind::LEMMA ? d_ra : d_rpp) << std::endl;
211
        // add trusted step, the rule depends on the kind of trust node
212
1646
        cdp.addStep(
213
823
            proven, tnk == TrustNodeKind::LEMMA ? d_ra : d_rpp, {}, {proven});
214
      }
215
    }
216
  } while (success);
217
218
  // prove ( curr == f ), which is not necessary if they are the same
219
  // modulo symmetry.
220
39086
  if (!CDProof::isSame(f, curr))
221
  {
222
22022
    Node fullRewrite = curr.eqNode(f);
223
11011
    if (transChildren.size() >= 2)
224
    {
225
1442
      Trace("smt-pppg") << "...apply trans to get " << fullRewrite << std::endl;
226
1442
      std::reverse(transChildren.begin(), transChildren.end());
227
1442
      cdp.addStep(fullRewrite, PfRule::TRANS, transChildren, {});
228
    }
229
11011
    Trace("smt-pppg") << "...eq_resolve to prove" << std::endl;
230
    // prove f
231
11011
    cdp.addStep(f, PfRule::EQ_RESOLVE, {curr, fullRewrite}, {});
232
11011
    Trace("smt-pppg") << "...finished" << std::endl;
233
  }
234
235
  // overall, proof is:
236
  //        --------- from proof generator       ---------- from proof generator
237
  //        F_1 = F_2          ...               F_{n-1} = F_n
238
  // ---?   -------------------------------------------------- TRANS
239
  // F_1    F_1 = F_n
240
  // ---------------- EQ_RESOLVE
241
  // F_n
242
  // Note F_1 may have been given a proof if it was not an input assumption.
243
244
39086
  return cdp.getProofFor(f);
245
}
246
247
3794
ProofNodeManager* PreprocessProofGenerator::getManager() { return d_pnm; }
248
249
411
LazyCDProof* PreprocessProofGenerator::allocateHelperProof()
250
{
251
411
  return d_helperProofs.allocateProof(nullptr, d_ctx);
252
}
253
254
143639
std::string PreprocessProofGenerator::identify() const { return d_name; }
255
256
2500
void PreprocessProofGenerator::checkEagerPedantic(PfRule r)
257
{
258
2500
  if (options::proofCheck() == options::ProofCheckMode::EAGER)
259
  {
260
    // catch a pedantic failure now, which otherwise would not be
261
    // triggered since we are doing lazy proof generation
262
    ProofChecker* pc = d_pnm->getChecker();
263
    std::stringstream serr;
264
    if (pc->isPedanticFailure(r, serr))
265
    {
266
      Unhandled() << "PreprocessProofGenerator::checkEagerPedantic: "
267
                  << serr.str();
268
    }
269
  }
270
2500
}
271
272
}  // namespace smt
273
29574
}  // namespace cvc5