summaryrefslogtreecommitdiff
path: root/src/expr/node_manager.cpp
blob: 8da87c9eb867d48167d1e7ae8e421fcc4064a95b (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
/*********************                                           -*- C++ -*-  */
/** expr_manager.cpp
 ** This file is part of the CVC4 prototype.
 ** Copyright (c) 2009 The Analysis of Computer Systems Group (ACSys)
 ** Courant Institute of Mathematical Sciences
 ** New York University
 ** See the file COPYING in the top-level source directory for licensing
 ** information.
 **
 ** Expression manager implementation.
 **/

#include "node_builder.h"
#include "node_manager.h"
#include "expr/node.h"

namespace CVC4 {

__thread NodeManager* NodeManager::s_current = 0;

Node NodeManager::lookup(uint64_t hash, const Node& e) {
  Assert(this != NULL, "Woops, we have a bad expression manager!");
  hash_t::iterator i = d_hash.find(hash);
  if(i == d_hash.end()) {
    // insert
    std::vector<Node> v;
    v.push_back(e);
    d_hash.insert(std::make_pair(hash, v));
    return e;
  } else {
    for(std::vector<Node>::iterator j = i->second.begin(); j != i->second.end(); ++j) {
      if(e.getKind() != j->getKind())
        continue;

      if(e.numChildren() != j->numChildren())
        continue;

      Node::const_iterator c1 = e.begin();
      Node::iterator c2 = j->begin();
      for(; c1 != e.end() && c2 != j->end(); ++c1, ++c2) {
        if(c1->d_ev != c2->d_ev)
          break;
      }

      if(c1 != e.end() || c2 != j->end())
        continue;

      return *j;
    }
    // didn't find it, insert
    std::vector<Node> v;
    v.push_back(e);
    d_hash.insert(std::make_pair(hash, v));
    return e;
  }
}

// general expression-builders

Node NodeManager::mkExpr(Kind kind) {
  return NodeBuilder(this, kind);
}

Node NodeManager::mkExpr(Kind kind, const Node& child1) {
  return NodeBuilder(this, kind) << child1;
}

Node NodeManager::mkExpr(Kind kind, const Node& child1, const Node& child2) {
  return NodeBuilder(this, kind) << child1 << child2;
}

Node NodeManager::mkExpr(Kind kind, const Node& child1, const Node& child2, const Node& child3) {
  return NodeBuilder(this, kind) << child1 << child2 << child3;
}

Node NodeManager::mkExpr(Kind kind, const Node& child1, const Node& child2, const Node& child3, const Node& child4) {
  return NodeBuilder(this, kind) << child1 << child2 << child3 << child4;
}

Node NodeManager::mkExpr(Kind kind, const Node& child1, const Node& child2, const Node& child3, const Node& child4, const Node& child5) {
  return NodeBuilder(this, kind) << child1 << child2 << child3 << child4 << child5;
}

// N-ary version
Node NodeManager::mkExpr(Kind kind, const std::vector<Node>& children) {
  return NodeBuilder(this, kind).append(children);
}

Node NodeManager::mkVar() {
  return NodeBuilder(this, VARIABLE);
}

}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback