[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-06 UTC."],[[["`StaticGraph` is a C++ class within the Google OR-Tools library used to represent a directed graph with a fixed structure."],["It provides methods to add nodes and arcs, and to access graph properties like the head and tail of an arc, or the out-degree of a node."],["The graph structure is built and finalized using the `Build` method, enabling efficient traversal and operations on the graph."],["Memory for the graph can be pre-allocated with `ReserveNodes` and `ReserveArcs` for performance optimization."],["Iteration over outgoing arcs from a node is facilitated by `OutgoingArcs` and `OutgoingArcsStartingFrom` methods, providing flexibility in graph traversal."]]],["The `StaticGraph` class in C++ provides methods for managing a graph structure. Key actions include adding nodes (`AddNode`) and arcs (`AddArc`), reserving memory for nodes (`ReserveNodes`) and arcs (`ReserveArcs`). Methods to retrieve information about the graph are available, such as getting the head (`Head`) and tail (`Tail`) of arcs, the out-degree of a node (`OutDegree`), and outgoing arcs (`OutgoingArcs`, `OutgoingArcsStartingFrom`). `Build` methods can finalize the graph. Constructor methods `StaticGraph` are also provided.\n"]]