GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/prop/skolem_def_manager.cpp Lines: 82 83 98.8 %
Date: 2021-09-10 Branches: 108 246 43.9 %

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
 * Skolem definition manager.
14
 */
15
16
#include "prop/skolem_def_manager.h"
17
18
#include "expr/attribute.h"
19
20
namespace cvc5 {
21
namespace prop {
22
23
9980
SkolemDefManager::SkolemDefManager(context::Context* context,
24
9980
                                   context::UserContext* userContext)
25
9980
    : d_skDefs(userContext), d_skActive(context)
26
{
27
9980
}
28
29
9977
SkolemDefManager::~SkolemDefManager() {}
30
31
28455
void SkolemDefManager::notifySkolemDefinition(TNode skolem, Node def)
32
{
33
  // Notice that skolem may have kind SKOLEM or BOOLEAN_TERM_VARIABLE
34
56910
  Trace("sk-defs") << "notifySkolemDefinition: " << def << " for " << skolem
35
28455
                   << std::endl;
36
  // in very rare cases, a skolem may be generated twice for terms that are
37
  // equivalent up to purification
38
28455
  if (d_skDefs.find(skolem) == d_skDefs.end())
39
  {
40
28449
    d_skDefs.insert(skolem, def);
41
  }
42
28455
}
43
44
2401
TNode SkolemDefManager::getDefinitionForSkolem(TNode skolem) const
45
{
46
2401
  NodeNodeMap::const_iterator it = d_skDefs.find(skolem);
47
2401
  Assert(it != d_skDefs.end()) << "No skolem def for " << skolem;
48
2401
  return it->second;
49
}
50
51
6789990
void SkolemDefManager::notifyAsserted(TNode literal,
52
                                      std::vector<TNode>& activatedSkolems,
53
                                      bool useDefs)
54
{
55
13579980
  std::unordered_set<Node> skolems;
56
6789990
  getSkolems(literal, skolems);
57
10426677
  for (const Node& k : skolems)
58
  {
59
3636687
    if (d_skActive.find(k) != d_skActive.end())
60
    {
61
      // already active
62
3271463
      continue;
63
    }
64
365224
    d_skActive.insert(k);
65
365224
    if (useDefs)
66
    {
67
      // add its definition to the activated list
68
365224
      NodeNodeMap::const_iterator it = d_skDefs.find(k);
69
365224
      Assert(it != d_skDefs.end());
70
365224
      activatedSkolems.push_back(it->second);
71
    }
72
    else
73
    {
74
      // add to the activated list
75
      activatedSkolems.push_back(k);
76
    }
77
  }
78
6789990
}
79
80
struct HasSkolemTag
81
{
82
};
83
struct HasSkolemComputedTag
84
{
85
};
86
/** Attribute true for nodes with skolems in them */
87
typedef expr::Attribute<HasSkolemTag, bool> HasSkolemAttr;
88
/** Attribute true for nodes where we have computed the above attribute */
89
typedef expr::Attribute<HasSkolemComputedTag, bool> HasSkolemComputedAttr;
90
91
19912741
bool SkolemDefManager::hasSkolems(TNode n) const
92
{
93
39825482
  std::unordered_set<TNode> visited;
94
19912741
  std::unordered_set<TNode>::iterator it;
95
39825482
  std::vector<TNode> visit;
96
39825482
  TNode cur;
97
19912741
  visit.push_back(n);
98
2806333
  do
99
  {
100
22719074
    cur = visit.back();
101
43284108
    if (cur.getAttribute(HasSkolemComputedAttr()))
102
    {
103
20565034
      visit.pop_back();
104
      // already computed
105
20565034
      continue;
106
    }
107
2154040
    it = visited.find(cur);
108
2154040
    if (it == visited.end())
109
    {
110
1162603
      visited.insert(cur);
111
1162603
      if (cur.getNumChildren() == 0)
112
      {
113
171166
        visit.pop_back();
114
171166
        bool hasSkolem = false;
115
171166
        if (cur.isVar())
116
        {
117
125996
          hasSkolem = (d_skDefs.find(cur) != d_skDefs.end());
118
        }
119
171166
        cur.setAttribute(HasSkolemAttr(), hasSkolem);
120
171166
        cur.setAttribute(HasSkolemComputedAttr(), true);
121
      }
122
      else
123
      {
124
991437
        visit.insert(visit.end(), cur.begin(), cur.end());
125
      }
126
    }
127
    else
128
    {
129
991437
      visit.pop_back();
130
991437
      bool hasSkolem = false;
131
2591702
      for (TNode i : cur)
132
      {
133
1739549
        Assert(i.getAttribute(HasSkolemComputedAttr()));
134
1739549
        if (i.getAttribute(HasSkolemAttr()))
135
        {
136
139284
          hasSkolem = true;
137
139284
          break;
138
        }
139
      }
140
991437
      cur.setAttribute(HasSkolemAttr(), hasSkolem);
141
991437
      cur.setAttribute(HasSkolemComputedAttr(), true);
142
    }
143
22719074
  } while (!visit.empty());
144
19912741
  Assert(n.getAttribute(HasSkolemComputedAttr()));
145
39825482
  return n.getAttribute(HasSkolemAttr());
146
}
147
148
6792733
void SkolemDefManager::getSkolems(TNode n,
149
                                  std::unordered_set<Node>& skolems) const
150
{
151
13585466
  std::unordered_set<TNode> visited;
152
6792733
  std::unordered_set<TNode>::iterator it;
153
13585466
  std::vector<TNode> visit;
154
13585466
  TNode cur;
155
6792733
  visit.push_back(n);
156
13120008
  do
157
  {
158
19912741
    cur = visit.back();
159
19912741
    visit.pop_back();
160
19912741
    if (!hasSkolems(cur))
161
    {
162
      // does not have skolems, continue
163
7878633
      continue;
164
    }
165
12034108
    it = visited.find(cur);
166
12034108
    if (it == visited.end())
167
    {
168
11617601
      visited.insert(cur);
169
11617601
      if (cur.isVar())
170
      {
171
3639088
        if (d_skDefs.find(cur) != d_skDefs.end())
172
        {
173
3639088
          skolems.insert(cur);
174
        }
175
      }
176
      else
177
      {
178
7978513
        visit.insert(visit.end(), cur.begin(), cur.end());
179
      }
180
    }
181
19912741
  } while (!visit.empty());
182
6792733
}
183
184
}  // namespace prop
185
29502
}  // namespace cvc5