You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Andrey Vernigora edited this page Feb 2, 2019
·
4 revisions
Algorithms Concepts
QuickGraph 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 QuickGraph.Algorithms namespace contains a static class, AlgorithmExtensions, that contains a set of extension methods that encapsulate the creation and processing of algorithms instances.