Class CondensedEdge<TVertex, TEdge, TGraph>
An edge connecting two graphs.
Implements
IEdge<TGraph>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: QuikGraph.Algorithms.Condensation
Assembly: QuikGraph.dll
Syntax
[Serializable]
public sealed class CondensedEdge<TVertex, TEdge, TGraph> : Edge<TGraph>, IEdge<TGraph> where TEdge : IEdge<TVertex> where TGraph : IMutableVertexAndEdgeSet<TVertex, TEdge>, new()
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
TEdge | Edge type. |
TGraph | Graph type. |
Constructors
| Improve this Doc View SourceCondensedEdge(TGraph, TGraph)
Initializes a new instance of the CondensedEdge<TVertex, TEdge, TGraph> class.
Declaration
public CondensedEdge(TGraph source, TGraph target)
Parameters
Type | Name | Description |
---|---|---|
TGraph | source | The source graph. |
TGraph | target | The target graph. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
System.ArgumentNullException |
|
Properties
| Improve this Doc View SourceEdges
Edges between source and target graphs.
Declaration
public IList<TEdge> Edges { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<TEdge> |