GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/prop/skolem_def_manager.cpp Lines: 82 83 98.8 %
Date: 2021-08-17 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
9917
SkolemDefManager::SkolemDefManager(context::Context* context,
24
9917
                                   context::UserContext* userContext)
25
9917
    : d_skDefs(userContext), d_skActive(context)
26
{
27
9917
}
28
29
9917
SkolemDefManager::~SkolemDefManager() {}
30
31
29909
void SkolemDefManager::notifySkolemDefinition(TNode skolem, Node def)
32
{
33
  // Notice that skolem may have kind SKOLEM or BOOLEAN_TERM_VARIABLE
34
59818
  Trace("sk-defs") << "notifySkolemDefinition: " << def << " for " << skolem
35
29909
                   << std::endl;
36
  // in very rare cases, a skolem may be generated twice for terms that are
37
  // equivalent up to purification
38
29909
  if (d_skDefs.find(skolem) == d_skDefs.end())
39
  {
40
29896
    d_skDefs.insert(skolem, def);
41
  }
42
29909
}
43
44
2408
TNode SkolemDefManager::getDefinitionForSkolem(TNode skolem) const
45
{
46
2408
  NodeNodeMap::const_iterator it = d_skDefs.find(skolem);
47
2408
  Assert(it != d_skDefs.end()) << "No skolem def for " << skolem;
48
2408
  return it->second;
49
}
50
51
6051484
void SkolemDefManager::notifyAsserted(TNode literal,
52
                                      std::vector<TNode>& activatedSkolems,
53
                                      bool useDefs)
54
{
55
12102968
  std::unordered_set<Node> skolems;
56
6051484
  getSkolems(literal, skolems);
57
9591776
  for (const Node& k : skolems)
58
  {
59
3540292
    if (d_skActive.find(k) != d_skActive.end())
60
    {
61
      // already active
62
3180648
      continue;
63
    }
64
359644
    d_skActive.insert(k);
65
359644
    if (useDefs)
66
    {
67
      // add its definition to the activated list
68
359644
      NodeNodeMap::const_iterator it = d_skDefs.find(k);
69
359644
      Assert(it != d_skDefs.end());
70
359644
      activatedSkolems.push_back(it->second);
71
    }
72
    else
73
    {
74
      // add to the activated list
75
      activatedSkolems.push_back(k);
76
    }
77
  }
78
6051484
}
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
18691634
bool SkolemDefManager::hasSkolems(TNode n) const
92
{
93
37383268
  std::unordered_set<TNode> visited;
94
18691634
  std::unordered_set<TNode>::iterator it;
95
37383268
  std::vector<TNode> visit;
96
37383268
  TNode cur;
97
18691634
  visit.push_back(n);
98
2758028
  do
99
  {
100
21449662
    cur = visit.back();
101
40780932
    if (cur.getAttribute(HasSkolemComputedAttr()))
102
    {
103
19331270
      visit.pop_back();
104
      // already computed
105
19331270
      continue;
106
    }
107
2118392
    it = visited.find(cur);
108
2118392
    if (it == visited.end())
109
    {
110
1144606
      visited.insert(cur);
111
1144606
      if (cur.getNumChildren() == 0)
112
      {
113
170820
        visit.pop_back();
114
170820
        bool hasSkolem = false;
115
170820
        if (cur.isVar())
116
        {
117
126122
          hasSkolem = (d_skDefs.find(cur) != d_skDefs.end());
118
        }
119
170820
        cur.setAttribute(HasSkolemAttr(), hasSkolem);
120
170820
        cur.setAttribute(HasSkolemComputedAttr(), true);
121
      }
122
      else
123
      {
124
973786
        visit.insert(visit.end(), cur.begin(), cur.end());
125
      }
126
    }
127
    else
128
    {
129
973786
      visit.pop_back();
130
973786
      bool hasSkolem = false;
131
2537538
      for (TNode i : cur)
132
      {
133
1707549
        Assert(i.getAttribute(HasSkolemComputedAttr()));
134
1707549
        if (i.getAttribute(HasSkolemAttr()))
135
        {
136
143797
          hasSkolem = true;
137
143797
          break;
138
        }
139
      }
140
973786
      cur.setAttribute(HasSkolemAttr(), hasSkolem);
141
973786
      cur.setAttribute(HasSkolemComputedAttr(), true);
142
    }
143
21449662
  } while (!visit.empty());
144
18691634
  Assert(n.getAttribute(HasSkolemComputedAttr()));
145
37383268
  return n.getAttribute(HasSkolemAttr());
146
}
147
148
6054218
void SkolemDefManager::getSkolems(TNode n,
149
                                  std::unordered_set<Node>& skolems) const
150
{
151
12108436
  std::unordered_set<TNode> visited;
152
6054218
  std::unordered_set<TNode>::iterator it;
153
12108436
  std::vector<TNode> visit;
154
12108436
  TNode cur;
155
6054218
  visit.push_back(n);
156
12637416
  do
157
  {
158
18691634
    cur = visit.back();
159
18691634
    visit.pop_back();
160
18691634
    if (!hasSkolems(cur))
161
    {
162
      // does not have skolems, continue
163
7070896
      continue;
164
    }
165
11620738
    it = visited.find(cur);
166
11620738
    if (it == visited.end())
167
    {
168
11236514
      visited.insert(cur);
169
11236514
      if (cur.isVar())
170
      {
171
3542700
        if (d_skDefs.find(cur) != d_skDefs.end())
172
        {
173
3542700
          skolems.insert(cur);
174
        }
175
      }
176
      else
177
      {
178
7693814
        visit.insert(visit.end(), cur.begin(), cur.end());
179
      }
180
    }
181
18691634
  } while (!visit.empty());
182
6054218
}
183
184
}  // namespace prop
185
29337
}  // namespace cvc5