summaryrefslogtreecommitdiff
path: root/src/theory/bv/bv_to_bool.cpp
blob: 5ab7cf1446528f0a0fff228aef1c1d1db85c3c5c (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*********************                                                        */
/*! \file bv_to_bool.h
 ** \verbatim
 ** Original author: Liana Hadarean 
 ** Major contributors: None. 
 ** Minor contributors (to current version): None. 
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2013  New York University and The University of Iowa
 ** See the file COPYING in the top-level source directory for licensing
 ** information.\endverbatim
 **
 ** \brief Preprocessing pass that lifts bit-vectors of size 1 to booleans.
 **
 ** Preprocessing pass that lifts bit-vectors of size 1 to booleans. 
 **/


#include "util/node_visitor.h"
#include "theory/bv/bv_to_bool.h"

using namespace std;
using namespace CVC4;
using namespace CVC4::theory;
using namespace CVC4::theory::bv;

void BvToBoolVisitor::storeBvToBool(TNode bv_term, Node bool_term) {
  Assert (!hasBoolTerm(bv_term));
  Assert (bool_term.getType().isBoolean()); 
  d_bvToBoolTerm[bv_term] = bool_term; 
}

Node BvToBoolVisitor::getBoolTerm(TNode bv_term) const {
  Assert(hasBoolTerm(bv_term));
  return d_bvToBoolTerm.find(bv_term)->second; 
}

bool BvToBoolVisitor::hasBoolTerm(TNode bv_term) const {
  Assert (bv_term.getType().isBitVector()); 
  return d_bvToBoolTerm.find(bv_term) != d_bvToBoolTerm.end(); 
}

void BvToBoolVisitor::addToCache(TNode term, Node new_term) {
  Assert (new_term != Node()); 
  Assert (!hasCache(term));
  d_cache[term] = new_term; 
}

Node BvToBoolVisitor::getCache(TNode term) const {
  if (!hasCache(term)) {
    return term; 
  }
  return d_cache.find(term)->second; 
}

bool BvToBoolVisitor::hasCache(TNode term) const {
  return d_cache.find(term) != d_cache.end(); 
}


void BvToBoolVisitor::start(TNode node) {}

bool BvToBoolVisitor::alreadyVisited(TNode current, TNode parent) {
  return d_visited.find(current) != d_visited.end(); 
}

bool BvToBoolVisitor::isConvertibleToBool(TNode current) {
  TypeNode type = current.getType(); 
  if (current.getNumChildren() == 0 && type.isBitVector()) {
    return type.getBitVectorSize() == 1; 
  }

  if (current.getKind() == kind::NOT) {
    current = current[0];
  }
  Kind kind = current.getKind();
  // checking bit-vector kinds 
  if (kind == kind::BITVECTOR_OR ||
      kind == kind::BITVECTOR_AND ||
      kind == kind::BITVECTOR_XOR ||
      kind == kind::BITVECTOR_NOT ||
      kind == kind::BITVECTOR_ULT ||
      kind == kind::BITVECTOR_ULE ||
      kind == kind::EQUAL) {
    // we can convert it to bool if all of the children can also be converted
    // to bool
    if (! current[0].getType().getBitVectorSize() == 1)
      return false; 
    for (unsigned i = 0; i < current.getNumChildren(); ++i) {
      // we assume that the children have been visited
      if (!hasBoolTerm(current[i]))
        return false; 
    }
    return true; 
  }
  if (kind == kind::ITE &&
      type.isBitVector()) {
    return type.getBitVectorSize() == 1 && hasBoolTerm(current[1]) && hasBoolTerm(current[2]); 
  }
  return false; 
}


Node BvToBoolVisitor::convertToBool(TNode current) {
  Debug("bv-to-bool") << "BvToBoolVisitor::convertToBool (" << current << ") "; 
  Kind kind = current.getKind();

  Node new_current; 
  if (current.getNumChildren() == 0) {
    if (current.getKind() == kind::CONST_BITVECTOR) {
      new_current = current == d_one? utils::mkTrue() : utils::mkFalse(); 
    } else {
      new_current = utils::mkNode(kind::EQUAL, current, d_one); 
    }
    Debug("bv-to-bool") << "=> " << new_current << "\n"; 
  } else if (kind == kind::BITVECTOR_ULT) {
    TNode a = getBoolTerm(current[0]);
    TNode b = getBoolTerm(current[1]);
    Node a_eq_0 = utils::mkNode(kind::EQUAL, a, d_zero);
    Node b_eq_1 = utils::mkNode(kind::EQUAL, b, d_one);
    new_current = utils::mkNode(kind::AND, a_eq_0, b_eq_1);
  }  else if (kind == kind::BITVECTOR_ULE) {
    TNode a = getBoolTerm(current[0]);
    TNode b = getBoolTerm(current[1]);
    Node a_eq_0 = utils::mkNode(kind::EQUAL, a, d_zero);
    Node b_eq_1 = utils::mkNode(kind::EQUAL, b, d_one);
    Node a_lt_b = utils::mkNode(kind::AND, a_eq_0, b_eq_1); 
    Node a_eq_b = utils::mkNode(kind::EQUAL, a, b);
    new_current = utils::mkNode(kind::OR, a_lt_b, a_eq_b);
  } else if (kind == kind::ITE) {
    TNode cond = current[0];
    TNode a = getBoolTerm(current[1]);
    TNode b = getBoolTerm(current[2]);
    new_current = utils::mkNode(kind::ITE, cond, a, b);
  } else {
    Kind new_kind; 
    switch (kind) {
    case kind::BITVECTOR_OR :
      new_kind = kind::OR;
      break; 
    case kind::BITVECTOR_AND:
      new_kind =  kind::AND;
      break; 
    case kind::BITVECTOR_XOR:
      new_kind = kind::XOR;
      break; 
    case kind::BITVECTOR_NOT:
      new_kind =  kind::NOT;
      break; 
    case kind::EQUAL:
      new_kind = kind::IFF;
      break; 
    default:
      Unreachable("Unknown kind ", kind);  
    }
    NodeBuilder<> builder(new_kind);
    if (current.getMetaKind() == kind::metakind::PARAMETERIZED) {
      builder << current.getOperator();
    }
    for (unsigned i = 0; i < current.getNumChildren(); ++i) {
      builder << getBoolTerm(current[i]); 
    }
    new_current = builder;
  }
  
  Debug("bv-to-bool") << "=> " << new_current << "\n";
  if (current.getType().isBitVector()) {
    storeBvToBool(current, new_current); 
  } else {
    addToCache(current, new_current); 
  }
  return new_current; 
}

void BvToBoolVisitor::visit(TNode current, TNode parent) {
  Debug("bv-to-bool") << "BvToBoolVisitor visit (" << current << ", " << parent << ")\n"; 
  Assert (!alreadyVisited(current, parent));
  d_visited.insert(current);

  Node result; 
  // if it has more than one child
  if (isConvertibleToBool(current)) {
    result = convertToBool(current); 
  } else {
    if (current.getNumChildren() == 0) {
      result = current; 
    } else {
      NodeBuilder<> builder(current.getKind());
      if (current.getMetaKind() == kind::metakind::PARAMETERIZED) {
        builder << current.getOperator();
      }
      for (unsigned i = 0; i < current.getNumChildren(); ++i) {
        Node converted = getCache(current[i]);
        if (converted.getType() == current[i].getType()) {
          builder << converted; 
        } else {
          builder << current[i]; 
        }
      }
      result = builder;
    }
    addToCache(current, result); 
  }
}

BvToBoolVisitor::return_type BvToBoolVisitor::done(TNode node) {
  Assert (hasCache(node)); 
  return getCache(node); 
}

Node BvToBoolPreprocessor::liftBoolToBV(TNode assertion) {
  Node result = NodeVisitor<BvToBoolVisitor>::run(d_visitor, assertion);
  return result; 
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback