GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/proof/trust_node.cpp Lines: 48 62 77.4 %
Date: 2021-08-01 Branches: 70 202 34.7 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Andrew Reynolds
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 the trust node utility.
14
 */
15
16
#include "proof/trust_node.h"
17
18
#include "proof/proof_ensure_closed.h"
19
#include "proof/proof_generator.h"
20
21
namespace cvc5 {
22
23
const char* toString(TrustNodeKind tnk)
24
{
25
  switch (tnk)
26
  {
27
    case TrustNodeKind::CONFLICT: return "CONFLICT";
28
    case TrustNodeKind::LEMMA: return "LEMMA";
29
    case TrustNodeKind::PROP_EXP: return "PROP_EXP";
30
    case TrustNodeKind::REWRITE: return "REWRITE";
31
    default: return "?";
32
  }
33
}
34
35
std::ostream& operator<<(std::ostream& out, TrustNodeKind tnk)
36
{
37
  out << toString(tnk);
38
  return out;
39
}
40
41
264266
TrustNode TrustNode::mkTrustConflict(Node conf, ProofGenerator* g)
42
{
43
528532
  Node ckey = getConflictProven(conf);
44
  // if a generator is provided, should confirm that it can prove it
45
264266
  Assert(g == nullptr || g->hasProofFor(ckey));
46
528532
  return TrustNode(TrustNodeKind::CONFLICT, ckey, g);
47
}
48
49
2403902
TrustNode TrustNode::mkTrustLemma(Node lem, ProofGenerator* g)
50
{
51
4807804
  Node lkey = getLemmaProven(lem);
52
  // if a generator is provided, should confirm that it can prove it
53
2403902
  Assert(g == nullptr || g->hasProofFor(lkey));
54
4807804
  return TrustNode(TrustNodeKind::LEMMA, lkey, g);
55
}
56
57
545067
TrustNode TrustNode::mkTrustPropExp(TNode lit, Node exp, ProofGenerator* g)
58
{
59
1090134
  Node pekey = getPropExpProven(lit, exp);
60
545067
  Assert(g == nullptr || g->hasProofFor(pekey));
61
1090134
  return TrustNode(TrustNodeKind::PROP_EXP, pekey, g);
62
}
63
64
2098614
TrustNode TrustNode::mkTrustRewrite(TNode n, Node nr, ProofGenerator* g)
65
{
66
4197228
  Node rkey = getRewriteProven(n, nr);
67
2098614
  Assert(g == nullptr || g->hasProofFor(rkey));
68
4197228
  return TrustNode(TrustNodeKind::REWRITE, rkey, g);
69
}
70
71
4578306
TrustNode TrustNode::null()
72
{
73
4578306
  return TrustNode(TrustNodeKind::INVALID, Node::null());
74
}
75
76
9890155
TrustNode::TrustNode(TrustNodeKind tnk, Node p, ProofGenerator* g)
77
9890155
    : d_tnk(tnk), d_proven(p), d_gen(g)
78
{
79
  // does not make sense to provide null node with generator
80
9890155
  Assert(!d_proven.isNull() || d_gen == nullptr);
81
9890155
}
82
83
2854140
TrustNodeKind TrustNode::getKind() const { return d_tnk; }
84
85
7362967
Node TrustNode::getNode() const
86
{
87
7362967
  switch (d_tnk)
88
  {
89
    // the node of lemma is the node itself
90
3154813
    case TrustNodeKind::LEMMA: return d_proven;
91
    // the node of the rewrite is the right hand side of EQUAL
92
2544995
    case TrustNodeKind::REWRITE: return d_proven[1];
93
    // the node of an explained propagation is the antecendant of an IMPLIES
94
    // the node of a conflict is underneath a NOT
95
1663159
    default: return d_proven[0];
96
  }
97
}
98
99
3767624
Node TrustNode::getProven() const { return d_proven; }
100
101
1800015
ProofGenerator* TrustNode::getGenerator() const { return d_gen; }
102
103
7827578
bool TrustNode::isNull() const { return d_proven.isNull(); }
104
105
108941
std::shared_ptr<ProofNode> TrustNode::toProofNode() const
106
{
107
108941
  if (d_gen == nullptr)
108
  {
109
849
    return nullptr;
110
  }
111
108092
  return d_gen->getProofFor(d_proven);
112
}
113
114
279068
Node TrustNode::getConflictProven(Node conf) { return conf.notNode(); }
115
116
2628050
Node TrustNode::getLemmaProven(Node lem) { return lem; }
117
118
597445
Node TrustNode::getPropExpProven(TNode lit, Node exp)
119
{
120
597445
  return NodeManager::currentNM()->mkNode(kind::IMPLIES, exp, lit);
121
}
122
123
2098614
Node TrustNode::getRewriteProven(TNode n, Node nr) { return n.eqNode(nr); }
124
125
573693
void TrustNode::debugCheckClosed(const char* c,
126
                                 const char* ctx,
127
                                 bool reqNullGen)
128
{
129
573693
  pfgEnsureClosed(d_proven, d_gen, c, ctx, reqNullGen);
130
573693
}
131
132
56221
std::string TrustNode::identifyGenerator() const
133
{
134
56221
  if (d_gen == nullptr)
135
  {
136
336
    return "null";
137
  }
138
55885
  return d_gen->identify();
139
}
140
141
std::ostream& operator<<(std::ostream& out, TrustNode n)
142
{
143
  out << "(" << n.getKind() << " " << n.getProven() << " "
144
      << n.identifyGenerator() << ")";
145
  return out;
146
}
147
148
29280
}  // namespace cvc5