#include <lemon/concepts/bpugraph.h>
Public Member Functions | |
BNode () | |
Default constructor. | |
BNode (const BNode &) | |
BNode (const Node &) | |
Construct the same node as BNode. | |
BNode & | operator= (const Node &) |
Assign node to B-node. | |
BNode (Invalid) | |
Invalid constructor & conversion. | |
bool | operator== (BNode) const |
Equality operator. | |
bool | operator!= (BNode) const |
Inequality operator. | |
bool | operator< (BNode) const |
Artificial ordering operator. |
BNode | ( | ) | [inline] |
This constructor initializes the iterator to be invalid.
Besides the core graph item functionality each node should be convertible to the represented B-node if it is it possible.
bool operator== | ( | BNode | ) | const [inline] |
Two iterators are equal if and only if they point to the same object or both are invalid.
bool operator!= | ( | BNode | ) | const [inline] |
bool operator< | ( | BNode | ) | const [inline] |
To allow the use of graph descriptors as key type in std::map or similar associative container we require this.