Show / Hide Table of Contents

Class HighlightContext<TVertex, TEdge, TGraph>

Base class for all highlight context.

Inheritance
System.Object
HighlightContext<TVertex, TEdge, TGraph>
Implements
IHighlightContext<TVertex, TEdge, 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)
System.Object.ToString()
Namespace: GraphShape.Algorithms.Highlight
Assembly: GraphShape.dll
Syntax
public class HighlightContext<TVertex, TEdge, TGraph> : IHighlightContext<TVertex, TEdge, TGraph> where TEdge : IEdge<TVertex> where TGraph : class, IBidirectionalGraph<TVertex, TEdge>
Type Parameters
Name Description
TVertex

Vertex type.

TEdge

Edge type.

TGraph

Graph type.

Constructors

| Improve this Doc View Source

HighlightContext(TGraph)

Initializes a new instance of the HighlightContext<TVertex, TEdge, TGraph> class.

Declaration
public HighlightContext(TGraph graph)
Parameters
Type Name Description
TGraph graph

Target graph.

Properties

| Improve this Doc View Source

Graph

Graph concerned by the highlighting.

Declaration
public TGraph Graph { get; }
Property Value
Type Description
TGraph

Implements

IHighlightContext<TVertex, TEdge, TGraph>

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