Show / Hide Table of Contents

Interface ILayoutInfoIterationEventArgs<TVertex, TEdge, TVertexInfo, TEdgeInfo>

Represents information on a layout algorithm iteration.

Inherited Members
ILayoutInfoIterationEventArgs<TVertex, TEdge>.GetVertexInfo(TVertex)
ILayoutInfoIterationEventArgs<TVertex, TEdge>.GetEdgeInfo(TEdge)
ILayoutIterationEventArgs<TVertex>.StatusInPercent
ILayoutIterationEventArgs<TVertex>.Abort
ILayoutIterationEventArgs<TVertex>.Iteration
ILayoutIterationEventArgs<TVertex>.Message
ILayoutIterationEventArgs<TVertex>.VerticesPositions
Namespace: GraphShape.Algorithms.Layout
Assembly: GraphShape.dll
Syntax
public interface ILayoutInfoIterationEventArgs<TVertex, TEdge, TVertexInfo, TEdgeInfo> : ILayoutInfoIterationEventArgs<TVertex, TEdge>, ILayoutIterationEventArgs<TVertex> where TEdge : IEdge<TVertex>
Type Parameters
Name Description
TVertex

Vertex type.

TEdge

Edge type.

TVertexInfo

Vertex information type.

TEdgeInfo

Edge information type.

Properties

| Improve this Doc View Source

EdgesInfos

Extra edges information.

Declaration
IDictionary<TEdge, TEdgeInfo> EdgesInfos { get; }
Property Value
Type Description
System.Collections.Generic.IDictionary<TEdge, TEdgeInfo>
| Improve this Doc View Source

VerticesInfos

Extra vertices information.

Declaration
IDictionary<TVertex, TVertexInfo> VerticesInfos { get; }
Property Value
Type Description
System.Collections.Generic.IDictionary<TVertex, TVertexInfo>

Extension Methods

GraphHelpers.GetDistances<TVertex, TEdge, TGraph>(TGraph)
GraphHelpers.GetDiameter<TVertex, TEdge, TGraph>(TGraph)
GraphHelpers.GetDiameter<TVertex, TEdge, TGraph>(TGraph, out Double[,])
  • Improve this Doc
  • View Source
In This Article
Back to top GraphShape