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
Eivind Gussiås Løkseth edited this page Aug 3, 2018
·
6 revisions
Condensation Graph
This algorithm condensate any graph by merge a set of edges in a condensated edge. The user can provide a predicate of edges to specify which edge to condensate or condenstate by components as well.
The AlgorithmExtensions class provide various helpers, {{Condensate...}}, to condenstate graphs:
{{
IVertexAndEdgeListGraph<TVertex, TEdge> g = ...; // input graph
var condensated = g.CondenstateWeaklyConnected();
}}