Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
|
#include <graph.h>
Classes | |
class | IncomingArcIterator |
class | OppositeIncomingArcIterator |
class | OutgoingArcIterator |
class | OutgoingOrOppositeIncomingArcIterator |
Public Member Functions | |
ReverseArcMixedGraph () | |
ReverseArcMixedGraph (NodeIndexType num_nodes, ArcIndexType arc_capacity) | |
ArcIndexType | OutDegree (NodeIndexType node) const |
ArcIndexType | InDegree (NodeIndexType node) const |
BeginEndWrapper< OutgoingArcIterator > | OutgoingArcs (NodeIndexType node) const |
BeginEndWrapper< IncomingArcIterator > | IncomingArcs (NodeIndexType node) const |
BeginEndWrapper< OutgoingOrOppositeIncomingArcIterator > | OutgoingOrOppositeIncomingArcs (NodeIndexType node) const |
BeginEndWrapper< OppositeIncomingArcIterator > | OppositeIncomingArcs (NodeIndexType node) const |
BeginEndWrapper< OutgoingArcIterator > | OutgoingArcsStartingFrom (NodeIndexType node, ArcIndexType from) const |
BeginEndWrapper< IncomingArcIterator > | IncomingArcsStartingFrom (NodeIndexType node, ArcIndexType from) const |
BeginEndWrapper< OutgoingOrOppositeIncomingArcIterator > | OutgoingOrOppositeIncomingArcsStartingFrom (NodeIndexType node, ArcIndexType from) const |
BeginEndWrapper< OppositeIncomingArcIterator > | OppositeIncomingArcsStartingFrom (NodeIndexType node, ArcIndexType from) const |
absl::Span< const NodeIndexType > | operator[] (NodeIndexType node) const |
ArcIndexType | OppositeArc (ArcIndexType arc) const |
NodeIndexType | Head (ArcIndexType arc) const |
NodeIndexType | Tail (ArcIndexType arc) const |
void | ReserveArcs (ArcIndexType bound) override |
void | AddNode (NodeIndexType node) |
ArcIndexType | AddArc (NodeIndexType tail, NodeIndexType head) |
void | Build () |
void | Build (std::vector< ArcIndexType > *permutation) |
bool | IsArcValid (ArcIndexType arc) const |
Public Member Functions inherited from util::BaseGraph< int32_t, int32_t, true > | |
BaseGraph () | |
BaseGraph (const BaseGraph &)=default | |
BaseGraph & | operator= (const BaseGraph &)=default |
virtual | ~BaseGraph ()=default |
int32_t | num_nodes () const |
int32_t | size () const |
int32_t | num_arcs () const |
Returns the number of valid arcs in the graph. | |
IntegerRange< NodeIndex > | AllNodes () const |
BaseGraph implementation -------------------------------------------------—. | |
IntegerRange< ArcIndex > | AllForwardArcs () const |
bool | IsNodeValid (int32_t node) const |
Returns true if the given node is a valid node of the graph. | |
bool | IsArcValid (int32_t arc) const |
int32_t | node_capacity () const |
Capacity reserved for future nodes, always >= num_nodes_. | |
int32_t | arc_capacity () const |
Capacity reserved for future arcs, always >= num_arcs_. | |
virtual void | ReserveNodes (int32_t bound) |
virtual void | ReserveArcs (int32_t bound) |
void | Reserve (int32_t node_capacity, int32_t arc_capacity) |
void | FreezeCapacities () |
void | GroupForwardArcsByFunctor (const A &a, B *b) |
int32_t | max_end_arc_index () const |
Additional Inherited Members | |
Public Types inherited from util::BaseGraph< int32_t, int32_t, true > | |
typedef int32_t | NodeIndex |
typedef int32_t | ArcIndex |
Static Public Attributes inherited from util::BaseGraph< int32_t, int32_t, true > | |
static const int32_t | kNilNode |
static const int32_t | kNilArc |
Protected Member Functions inherited from util::BaseGraph< int32_t, int32_t, true > | |
void | ComputeCumulativeSum (std::vector< int32_t > *v) |
Functions commented when defined because they are implementation details. | |
void | BuildStartAndForwardHead (SVector< int32_t > *head, std::vector< int32_t > *start, std::vector< int32_t > *permutation) |
Protected Attributes inherited from util::BaseGraph< int32_t, int32_t, true > | |
int32_t | num_nodes_ |
int32_t | node_capacity_ |
int32_t | num_arcs_ |
int32_t | arc_capacity_ |
bool | const_capacities_ |
This graph is a mix between the ReverseArcListGraph and the ReverseArcStaticGraph. It uses less memory:
|
inline |
|
inline |
ArcIndexType util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::AddArc | ( | NodeIndexType | tail, |
NodeIndexType | head ) |
void util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::AddNode | ( | NodeIndexType | node | ) |
|
inline |
void util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::Build | ( | std::vector< ArcIndexType > * | permutation | ) |
NodeIndexType util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::Head | ( | ArcIndexType | arc | ) | const |
BeginEndWrapper< IncomingArcIterator > util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::IncomingArcs | ( | NodeIndexType | node | ) | const |
BeginEndWrapper< IncomingArcIterator > util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::IncomingArcsStartingFrom | ( | NodeIndexType | node, |
ArcIndexType | from ) const |
ArcIndexType util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::InDegree | ( | NodeIndexType | node | ) | const |
|
inline |
absl::Span< const NodeIndexType > util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::operator[] | ( | NodeIndexType | node | ) | const |
ArcIndexType util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::OppositeArc | ( | ArcIndexType | arc | ) | const |
BeginEndWrapper< OppositeIncomingArcIterator > util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::OppositeIncomingArcs | ( | NodeIndexType | node | ) | const |
BeginEndWrapper< OppositeIncomingArcIterator > util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::OppositeIncomingArcsStartingFrom | ( | NodeIndexType | node, |
ArcIndexType | from ) const |
ArcIndexType util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::OutDegree | ( | NodeIndexType | node | ) | const |
BeginEndWrapper< OutgoingArcIterator > util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::OutgoingArcs | ( | NodeIndexType | node | ) | const |
BeginEndWrapper< OutgoingArcIterator > util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::OutgoingArcsStartingFrom | ( | NodeIndexType | node, |
ArcIndexType | from ) const |
BeginEndWrapper< OutgoingOrOppositeIncomingArcIterator > util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::OutgoingOrOppositeIncomingArcs | ( | NodeIndexType | node | ) | const |
BeginEndWrapper< OutgoingOrOppositeIncomingArcIterator > util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::OutgoingOrOppositeIncomingArcsStartingFrom | ( | NodeIndexType | node, |
ArcIndexType | from ) const |
|
override |
NodeIndexType util::ReverseArcMixedGraph< NodeIndexType, ArcIndexType >::Tail | ( | ArcIndexType | arc | ) | const |