You are here: Start » FIL.NET » Invoke.FindConnectedComponents

Invoke.FindConnectedComponents

Finds connected components in a graph given as set of bidirectional connections.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void FindConnectedComponents
(
	List<List<int>> inConnections,
	List<List<int>> outComponents,
	List<int> outElementLabels,
	out bool outFound
)

Parameters

Name Type Range Default Description
inConnectionsSystem.Collections.Generic.List<System.Collections.Generic.List<int>>List of connections for each element.
outComponentsSystem.Collections.Generic.List<System.Collections.Generic.List<int>>List of input element indices for each connected component.
outElementLabelsSystem.Collections.Generic.List<int>Index of a component for each input element.
outFoundbool

Function Overrides

See also