C++ Reference
C++ Reference: Graph
Detailed Description
class operations_research::StarGraphBase< NodeIndexType, ArcIndexType, DerivedGraph >
Definition at line 213 of file ebert_graph.h.
Classes | |
class | ArcIterator |
class | NodeIterator |
class | OutgoingArcIterator |
Public Member Functions | |
NodeIndexType | num_nodes () const |
ArcIndexType | num_arcs () const |
NodeIndexType | end_node_index () const |
ArcIndexType | end_arc_index () const |
NodeIndexType | max_num_nodes () const |
ArcIndexType | max_num_arcs () const |
NodeIndexType | max_end_node_index () const |
ArcIndexType | max_end_arc_index () const |
bool | IsNodeValid (NodeIndexType node) const |
ArcIndexType | LookUpArc (const NodeIndexType tail, const NodeIndexType head) const |
NodeIndexType | Head (const ArcIndexType arc) const |
std::string | NodeDebugString (const NodeIndexType node) const |
std::string | ArcDebugString (const ArcIndexType arc) const |
Static Public Attributes | |
static const NodeIndexType | kNilNode = -1 |
static const ArcIndexType | kNilArc |
static const NodeIndexType | kFirstNode = 0 |
static const ArcIndexType | kFirstArc = 0 |
static const NodeIndexType | kMaxNumNodes |
static const ArcIndexType | kMaxNumArcs |
Protected Member Functions | |
StarGraphBase () | |
~StarGraphBase () | |
NodeIndexType | StartNode (NodeIndexType node) const |
ArcIndexType | StartArc (ArcIndexType arc) const |
NodeIndexType | NextNode (const NodeIndexType node) const |
ArcIndexType | NextArc (const ArcIndexType arc) const |
ArcIndexType | FirstOutgoingArc (const NodeIndexType node) const |
Protected Attributes | |
NodeIndexType | max_num_nodes_ |
ArcIndexType | max_num_arcs_ |
NodeIndexType | num_nodes_ |
ArcIndexType | num_arcs_ |
ZVector< NodeIndexType > | head_ |
ZVector< ArcIndexType > | first_incident_arc_ |
Constructor & Destructor Documentation
◆ StarGraphBase()
|
inlineprotected |
Definition at line 427 of file ebert_graph.h.
◆ ~StarGraphBase()
|
inlineprotected |
Definition at line 434 of file ebert_graph.h.
Member Function Documentation
◆ ArcDebugString()
|
inline |
Definition at line 310 of file ebert_graph.h.
◆ end_arc_index()
|
inline |
Definition at line 252 of file ebert_graph.h.
◆ end_node_index()
|
inline |
Definition at line 247 of file ebert_graph.h.
◆ FirstOutgoingArc()
|
inlineprotected |
Definition at line 479 of file ebert_graph.h.
◆ Head()
|
inline |
Definition at line 297 of file ebert_graph.h.
◆ IsNodeValid()
|
inline |
Definition at line 279 of file ebert_graph.h.
◆ LookUpArc()
|
inline |
Definition at line 285 of file ebert_graph.h.
◆ max_end_arc_index()
|
inline |
Definition at line 271 of file ebert_graph.h.
◆ max_end_node_index()
|
inline |
Definition at line 264 of file ebert_graph.h.
◆ max_num_arcs()
|
inline |
Definition at line 259 of file ebert_graph.h.
◆ max_num_nodes()
|
inline |
Definition at line 255 of file ebert_graph.h.
◆ NextArc()
|
inlineprotected |
Definition at line 472 of file ebert_graph.h.
◆ NextNode()
|
inlineprotected |
Definition at line 458 of file ebert_graph.h.
◆ NodeDebugString()
|
inline |
Definition at line 302 of file ebert_graph.h.
◆ num_arcs()
|
inline |
Definition at line 241 of file ebert_graph.h.
◆ num_nodes()
|
inline |
Definition at line 237 of file ebert_graph.h.
◆ StartArc()
|
inlineprotected |
Definition at line 445 of file ebert_graph.h.
◆ StartNode()
|
inlineprotected |
Definition at line 439 of file ebert_graph.h.
Member Data Documentation
◆ first_incident_arc_
|
protected |
Definition at line 502 of file ebert_graph.h.
◆ head_
|
protected |
Definition at line 498 of file ebert_graph.h.
◆ kFirstArc
|
static |
Definition at line 225 of file ebert_graph.h.
◆ kFirstNode
|
static |
Definition at line 222 of file ebert_graph.h.
◆ kMaxNumArcs
|
static |
Definition at line 235 of file ebert_graph.h.
◆ kMaxNumNodes
|
static |
Definition at line 230 of file ebert_graph.h.
◆ kNilArc
|
static |
Definition at line 219 of file ebert_graph.h.
◆ kNilNode
|
static |
Definition at line 216 of file ebert_graph.h.
◆ max_num_arcs_
|
protected |
Definition at line 489 of file ebert_graph.h.
◆ max_num_nodes_
|
protected |
Definition at line 486 of file ebert_graph.h.
◆ num_arcs_
|
protected |
Definition at line 495 of file ebert_graph.h.
◆ num_nodes_
|
protected |
Definition at line 492 of file ebert_graph.h.
The documentation for this class was generated from the following file: