summaryrefslogtreecommitdiff
path: root/src/proof/proof_letify.h
blob: cfe1259e5518e5d58efefe56ed282966b96c72d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/******************************************************************************
 * Top contributors (to current version):
 *   Andrew Reynolds
 *
 * This file is part of the cvc5 project.
 *
 * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
 * in the top-level source directory and their institutional affiliations.
 * All rights reserved.  See the file COPYING in the top-level source
 * directory for licensing information.
 * ****************************************************************************
 *
 * Utilities for computing letification of proofs.
 */

#include "cvc5_private.h"

#ifndef CVC5__PROOF__PROOF_LETIFY_H
#define CVC5__PROOF__PROOF_LETIFY_H

#include <iostream>
#include <map>

#include "expr/node.h"
#include "proof/proof_node.h"

namespace cvc5 {
namespace proof {

/**
 * A callback which asks whether a proof node should be traversed for
 * proof letification. For example, this may make it so that SCOPE is not
 * traversed.
 */
class ProofLetifyTraverseCallback
{
 public:
  virtual ~ProofLetifyTraverseCallback() {}
  /**
   * Should we traverse proof node pn for letification? If this returns false,
   * then pn is being treated as a black box for letification.
   */
  virtual bool shouldTraverse(const ProofNode* pn);
};

/**
 * Utilities for letification.
 */
class ProofLetify
{
 public:
  /**
   * Stores proofs in map that require letification, mapping them to a unique
   * identifier. For each proof node in the domain of pletMap in the list
   * pletList such that pletList[i] does not contain subproof pletList[j] for
   * j>i.
   *
   * @param pn The proof node to letify
   * @param pletList The list of proofs occurring in pn that should be letified
   * @param pletMap Mapping from proofs in pletList to an identifier
   * @param thresh The number of times a proof node has to occur to be added
   * to pletList
   * @param pltc A callback indicating whether to traverse a proof node during
   * this call.
   */
  static void computeProofLet(const ProofNode* pn,
                              std::vector<const ProofNode*>& pletList,
                              std::map<const ProofNode*, size_t>& pletMap,
                              size_t thresh = 2,
                              ProofLetifyTraverseCallback* pltc = nullptr);

 private:
  /**
   * Convert a map from proof nodes to # occurrences (pcount) to a list
   * pletList / pletMap as described in the method above, where thresh
   * is the minimum number of occurrences to be added to the list.
   */
  static void convertProofCountToLet(
      const std::vector<const ProofNode*>& visitList,
      const std::map<const ProofNode*, size_t>& pcount,
      std::vector<const ProofNode*>& pletList,
      std::map<const ProofNode*, size_t>& pletMap,
      size_t thresh = 2);
  /**
   * Compute the count of sub proof nodes in pn, store in pcount. Additionally,
   * store each proof node in the domain of pcount in an order in visitList
   * such that visitList[i] does not contain sub proof visitList[j] for j>i.
   */
  static void computeProofCounts(const ProofNode* pn,
                                 std::vector<const ProofNode*>& visitList,
                                 std::map<const ProofNode*, size_t>& pcount,
                                 ProofLetifyTraverseCallback* pltc);
};

}  // namespace proof
}  // namespace cvc5

#endif
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback