summaryrefslogtreecommitdiff
path: root/src/theory/bv/bitblast/proof_bitblaster.h
blob: f6aa71f218c586752d9dc2b135810eaca66894a8 (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
/******************************************************************************
 * Top contributors (to current version):
 *   Aina Niemetz, Mathias Preiner
 *
 * 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.
 * ****************************************************************************
 *
 * A bit-blaster wrapper around NodeBitblaster for proof logging.
 */
#include "cvc5_private.h"

#ifndef CVC5__THEORY__BV__BITBLAST__PROOF_BITBLASTER_H
#define CVC5__THEORY__BV__BITBLAST__PROOF_BITBLASTER_H

#include "expr/term_context.h"
#include "theory/bv/bitblast/node_bitblaster.h"

namespace cvc5 {

class TConvProofGenerator;

namespace theory {
namespace bv {

class BBProof
{
  using Bits = std::vector<Node>;

 public:
  BBProof(TheoryState* state, ProofNodeManager* pnm, bool fineGrained);
  ~BBProof();

  /** Bit-blast atom 'node'. */
  void bbAtom(TNode node);
  /** Check if atom was already bit-blasted. */
  bool hasBBAtom(TNode atom) const;
  /** Check if term was already bit-blasted. */
  bool hasBBTerm(TNode node) const;
  /** Get bit-blasted node stored for atom. */
  Node getStoredBBAtom(TNode node);
  /** Collect model values for all relevant terms given in 'relevantTerms'. */
  bool collectModelValues(TheoryModel* m, const std::set<Node>& relevantTerms);

  TConvProofGenerator* getProofGenerator();

 private:
  /** Return true if proofs are enabled. */
  bool isProofsEnabled() const;

  /** The associated simple bit-blaster. */
  std::unique_ptr<NodeBitblaster> d_bb;
  /** The associated proof node manager. */
  ProofNodeManager* d_pnm;
  /** Term context for d_tcpg to not rewrite below BV leafs. */
  std::unique_ptr<TermContext> d_tcontext;
  /** The associated term conversion proof generator. */
  std::unique_ptr<TConvProofGenerator> d_tcpg;
  /** Map bit-vector nodes to bit-blasted nodes. */
  std::unordered_map<Node, Node> d_bbMap;

  bool d_recordFineGrainedProofs;
};

}  // namespace bv
}  // namespace theory
}  // namespace cvc5
#endif
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback