Show / Hide Table of Contents

Class MergedEdge

Helpers for MergedEdge<TVertex, TEdge>.

Inheritance
System.Object
MergedEdge
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)
System.Object.ToString()
Namespace: QuikGraph.Algorithms.Condensation
Assembly: QuikGraph.dll
Syntax
public static class MergedEdge

Methods

| Improve this Doc View Source

Merge<TVertex, TEdge>(MergedEdge<TVertex, TEdge>, MergedEdge<TVertex, TEdge>)

Merges the given two edges.

Declaration
public static MergedEdge<TVertex, TEdge> Merge<TVertex, TEdge>(MergedEdge<TVertex, TEdge> inEdge, MergedEdge<TVertex, TEdge> outEdge)
    where TEdge : IEdge<TVertex>
Parameters
Type Name Description
MergedEdge<TVertex, TEdge> inEdge
MergedEdge<TVertex, TEdge> outEdge
Returns
Type Description
MergedEdge<TVertex, TEdge>

The merged edge.

Type Parameters
Name Description
TVertex
TEdge
Exceptions
Type Condition
System.ArgumentNullException

inEdge is null.

System.ArgumentNullException

outEdge is null.

  • Improve this Doc
  • View Source
In This Article
Back to top QuikGraph