Skip to content

Latest commit

 

History

History

graph

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Graph and Network Flows

This directory contains data structures and algorithms for graph and network flow problems.

It contains in particular:

  • well-tuned algorithms (for example, shortest paths and Hamiltonian paths).
  • hard-to-find algorithms (Hamiltonian paths, push-relabel flow algorithms).
  • other, more common algorithms, that are useful to use with EbertGraph.

Graph representations:

Generic algorithms for shortest paths:

  • bounded_dijkstra.h: entry point for shortest paths. This is the preferred implementation for most needs.

  • bidirectional_dijkstra.h: for large graphs, this implementation might be faster than bounded_dijkstra.h.

  • shortest_paths.h: shortest paths that are computed in parallel (only if there are several sources). Includes Dijkstra and Bellman-Ford algorithms. Although its name is very generic, only use this implementation if parallelism makes sense.

Specific algorithms for paths:

  • dag_shortest_path.h: shortest paths on directed acyclic graphs. If you have such a graph, this implementation is likely to be the fastest. Unlike most implementations, these algorithms have two interfaces: a "simple" one (list of edges and weights) and a standard one (taking as input a graph data structure from //ortools/graph/graph.h).

  • dag_constrained_shortest_path.: shortest paths on directed acyclic graphs with resource constraints.

  • hamiltonian_path.h: entry point for computing minimum Hamiltonian paths and cycles on directed graphs with costs on arcs, using a dynamic-programming algorithm.

  • eulerian_path.h: entry point for computing minimum Eulerian paths and cycles on undirected graphs.

Graph decompositions:

  • connected_components.h: entry point for computing connected components in an undirected graph. (It does not need ebert_graph.h or digraph.h.)

  • strongly_connected_components.h: entry point for computing the strongly connected components of a directed graph.

  • cliques.h: entry point for computing maximum cliques and clique covers in a directed graph, based on the Bron-Kerbosch algorithm. (It does not need ebert_graph.h or digraph.h.)

Flow algorithms:

  • linear_assignment.h: entry point for solving linear sum assignment problems (classical assignment problems where the total cost is the sum of the costs of each arc used) on directed graphs with arc costs, based on the Goldberg-Kennedy push-relabel algorithm.

  • max_flow.h: entry point for computing maximum flows on directed graphs with arc capacities, based on the Goldberg-Tarjan push-relabel algorithm.

  • min_cost_flow.h: entry point for computing minimum-cost flows on directed graphs with arc capacities, arc costs, and supplies/demands at nodes, based on the Goldberg-Tarjan push-relabel algorithm.

Wrappers

  • python: the SWIG code that makes the wrapper available in Python and its unit tests.

  • java: the SWIG code that makes the wrapper available in Java and its unit tests.

  • csharp: the SWIG code that makes the wrapper available in C# and its unit tests.

Samples

You can find some canonical examples in samples.