Skip to content

Algorithm Concepts

Alexandre Rabérin edited this page May 12, 2020 · 1 revision

Algorithms Concepts

QuikGraph contains a set of algorithms that solve classic graph theory problems. Algorithms are designed around the command pattern, i.e. their execution is encapsulated into classes. Most algorithms are categorized by the kind of problem they can solve (note that some algorithms just don’t fit in those categories):

  • Vertex predecessors
  • Edge predecessors
  • Vertex distances
  • Time stampers

Tip:

The QuikGraph.Algorithms namespace contains a static class, AlgorithmExtensions, that contains a set of extension methods that encapsulate the creation and processing of algorithms instances. But there are not all available as extensions.

Clone this wiki locally