This function needs to expand a bit, so move it to the implementation
file.
value=VALUE_TRYFAILED;
}
+/** @return The Node associated with this ModelAction */
+Node * ModelAction::get_node() const
+{
+ return node;
+}
+
/**
* Update the model action's read_from action
* @param act The action to read from; should be a write
uint64_t get_value() const { return value; }
const ModelAction * get_reads_from() const { return reads_from; }
- Node * get_node() const { return node; }
+ Node * get_node() const;
void set_node(Node *n) { node = n; }
void set_read_from(const ModelAction *act);