Click or drag to resize

Component Class

Component
Inheritance Hierarchy
SystemObject
  GraphLibraryComponent

Namespace:  GraphLibrary
Assembly:  GraphLibrary (in GraphLibrary.dll) Version: 1.0.1
Syntax
C#
public class Component

The Component type exposes the following members.

Constructors
  NameDescription
Public methodComponent
Initializes a new instance of the Component class
Top
Methods
  NameDescription
Public methodConnectedComponents
Generate connected components.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsConnected
Returns True if the graph is connected, false otherwise.
Public methodIsWeaklyConnected
Test directed graph for weak connectivity. A directed graph is weakly connected if and only if the graph is connected when the direction of the edge between nodes is ignored. Note that if a graph is strongly connected, it is by definition weakly connected as well.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodNodeConnectedComponent
Returns the set of nodes in the component of graph containing node n.
Public methodNumberConectedComponents
Returns the number of connected components.
Public methodNumberWeaklyConectedComponents
Returns the number of weakly connected components in graph.
Public methodStronglyConnectedComponents
Generate nodes in strongly connected components of graph.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWeaklyConnectedComponents
Generate weakly connected components of graph.
Top
See Also