|  | 
| Result< std::vector< std::vector< u32 > > > | hal::graph_algorithm::get_shortest_paths (NetlistGraph *graph, Gate *from_gate, const std::vector< Gate * > &to_gates, NetlistGraph::Direction direction) | 
|  | Compute a shortest path from the specified from_gateto each of the givento_gatesby traversing in the provided direction.  More...
 | 
|  | 
| Result< std::vector< std::vector< u32 > > > | hal::graph_algorithm::get_shortest_paths (NetlistGraph *graph, u32 from_vertex, const std::vector< u32 > &to_vertices, NetlistGraph::Direction direction) | 
|  | Compute a shortest path from the specified from_vertexto each of the givento_verticesby traversing in the provided direction.  More...
 | 
|  | 
| Result< std::vector< std::vector< u32 > > > | hal::graph_algorithm::get_shortest_paths_igraph (NetlistGraph *graph, u32 from_vertex, const igraph_vector_int_t *to_vertices, NetlistGraph::Direction direction) | 
|  | Compute a shortest path from the specified from_vertexto each of the givento_verticesby traversing in the provided direction.  More...
 | 
|  | 
| Result< std::vector< std::vector< u32 > > > | hal::graph_algorithm::get_all_shortest_paths (NetlistGraph *graph, Gate *from_gate, const std::vector< Gate * > &to_gates, NetlistGraph::Direction direction) | 
|  | Compute shortest paths from the specified from_gateto each of the givento_gatesby traversing in the provided direction.  More...
 | 
|  | 
| Result< std::vector< std::vector< u32 > > > | hal::graph_algorithm::get_all_shortest_paths (NetlistGraph *graph, u32 from_vertex, const std::vector< u32 > &to_vertices, NetlistGraph::Direction direction) | 
|  | Compute shortest paths from the specified from_vertexto each of the givento_verticesby traversing in the provided direction.  More...
 | 
|  | 
| Result< std::vector< std::vector< u32 > > > | hal::graph_algorithm::get_all_shortest_paths_igraph (NetlistGraph *graph, u32 from_vertex, const igraph_vector_int_t *to_vertices, NetlistGraph::Direction direction) | 
|  | Compute shortest paths from the specified from_vertexto each of the givento_verticesby traversing in the provided direction. Returns all shortest paths for each end gate. Each shortest path is given as a vector of vertices in the order of traversal.  More...
 | 
|  |