nodestack: add get_read_from_size()
authorBrian Norris <banorris@uci.edu>
Tue, 11 Sep 2012 17:19:10 +0000 (10:19 -0700)
committerBrian Norris <banorris@uci.edu>
Tue, 11 Sep 2012 17:19:10 +0000 (10:19 -0700)
nodestack.cc
nodestack.h

index 2ebfc71..71af6ef 100644 (file)
@@ -221,6 +221,10 @@ uint64_t Node::get_future_value() {
        return future_values[future_index];
 }
 
+int Node::get_read_from_size() {
+       return may_read_from.size();
+}
+
 /**
  * Gets the next 'may_read_from' action from this Node. Only valid for a node
  * where this->action is a 'read'.
index b440b11..8b4d7ae 100644 (file)
@@ -64,6 +64,7 @@ public:
        const ModelAction * get_read_from();
        bool increment_read_from();
        bool read_from_empty();
+       int get_read_from_size();
 
        void set_promise(unsigned int i);
        bool get_promise(unsigned int i);