Skip to content

Commit

Permalink
some documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
yoni206 committed May 7, 2024
1 parent 1dc59c2 commit fd4e9b6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/theory/bv/int_blaster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -951,6 +951,7 @@ void IntBlaster::collectQuantificationData(Node n) {
[this](TNode nn) { return d_quantifiedVariables.find(nn) != d_quantifiedVariables.end() && d_quantApplies.find(nn) != d_quantApplies.end(); }))
{
Trace("int-blaster-debug") << "collectQuantificationData for: " << n << std::endl;
// populating d_quantifiedVariables
if (d_quantifiedVariables.find(n) == d_quantifiedVariables.end()) {
d_quantifiedVariables[n] = std::unordered_set<Node>();
std::unordered_set<Node> qfvars;
Expand Down Expand Up @@ -979,6 +980,7 @@ void IntBlaster::collectQuantificationData(Node n) {
d_quantifiedVariables[n] = qfvars;
}

// populating d_quantApplies
if (d_quantApplies.find(n) == d_quantApplies.end()) {
std::unordered_set<Node> childrenApplies;
for (Node child : n) {
Expand Down

0 comments on commit fd4e9b6

Please sign in to comment.