summaryrefslogtreecommitdiff
path: root/src/expr/node_value.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2010-02-23 00:24:21 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2010-02-23 00:24:21 +0000
commit7115bef6bc8aac38b5e718db8fcb39c26ef4954a (patch)
treeb32b3ff61e195284484b7ffcc60655d8343c89d5 /src/expr/node_value.h
parentad223d3d5e5d19b04790dd48e586774e64735e3b (diff)
cosmetic changes, comments, and renaming of Expr related stuff to Node (leftovers from before switching to Node)
Diffstat (limited to 'src/expr/node_value.h')
-rw-r--r--src/expr/node_value.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/expr/node_value.h b/src/expr/node_value.h
index 73418b06d..f0220d37a 100644
--- a/src/expr/node_value.h
+++ b/src/expr/node_value.h
@@ -94,20 +94,20 @@ class NodeValue {
/** Destructor decrements the ref counts of its children */
~NodeValue();
- typedef NodeValue** ev_iterator;
- typedef NodeValue const* const* const_ev_iterator;
+ typedef NodeValue** nv_iterator;
+ typedef NodeValue const* const* const_nv_iterator;
- ev_iterator ev_begin();
- ev_iterator ev_end();
+ nv_iterator nv_begin();
+ nv_iterator nv_end();
- const_ev_iterator ev_begin() const;
- const_ev_iterator ev_end() const;
+ const_nv_iterator nv_begin() const;
+ const_nv_iterator nv_end() const;
template <bool ref_count>
class iterator {
- const_ev_iterator d_i;
+ const_nv_iterator d_i;
public:
- explicit iterator(const_ev_iterator i) : d_i(i) {}
+ explicit iterator(const_nv_iterator i) : d_i(i) {}
inline CVC4::NodeTemplate<ref_count> operator*();
@@ -149,8 +149,8 @@ public:
*/
size_t hash() const {
size_t hash = d_kind;
- const_ev_iterator i = ev_begin();
- const_ev_iterator i_end = ev_end();
+ const_nv_iterator i = nv_begin();
+ const_nv_iterator i_end = nv_end();
while (i != i_end) {
hash ^= (*i)->d_id + 0x9e3779b9 + (hash << 6) + (hash >> 2);
++ i;
@@ -163,9 +163,9 @@ public:
return false;
if(d_nchildren != nv->d_nchildren)
return false;
- const_ev_iterator i = ev_begin();
- const_ev_iterator j = nv->ev_begin();
- const_ev_iterator i_end = ev_end();
+ const_nv_iterator i = nv_begin();
+ const_nv_iterator j = nv->nv_begin();
+ const_nv_iterator i_end = nv_end();
while(i != i_end) {
if ((*i) != (*j)) return false;
++i; ++j;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback