4 * Prototype of graph-based program representation: inline implementation of
7 * @author Heikki Kultala 2008 (hkultala@cs.tut.fi)
12 * Returns a node ID as integer.
14 * This id is unique among all the nodes in the graph.
16 * @return The nodeID as integer.
19 GraphNode::nodeID() const {
24 * Comparison based on node ID's for maps and sets.
27 GraphNode::Comparator::operator()(
28 const GraphNode* mn1, const GraphNode* mn2) const {
29 return mn1->nodeID() < mn2->nodeID();