Show / Hide Table of Contents

Class CondensatedGraphRenderer<TVertex, TEdge, TGraph>

Condensation graph to DOT renderer.

Inheritance
System.Object
GraphRendererBase<TGraph, CondensedEdge<TVertex, TEdge, TGraph>>
CondensatedGraphRenderer<TVertex, TEdge, TGraph>
Inherited Members
GraphRendererBase<TGraph, CondensedEdge<TVertex, TEdge, TGraph>>.Initialize()
GraphRendererBase<TGraph, CondensedEdge<TVertex, TEdge, TGraph>>.Clean()
GraphRendererBase<TGraph, CondensedEdge<TVertex, TEdge, TGraph>>.Graphviz
GraphRendererBase<TGraph, CondensedEdge<TVertex, TEdge, TGraph>>.VisitedGraph
GraphRendererBase<TGraph, CondensedEdge<TVertex, TEdge, TGraph>>.Generate(IDotEngine, String)
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.Graphviz
Assembly: QuikGraph.Graphviz.dll
Syntax
public class CondensatedGraphRenderer<TVertex, TEdge, TGraph> : GraphRendererBase<TGraph, CondensedEdge<TVertex, TEdge, 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 Source

CondensatedGraphRenderer(IEdgeListGraph<TGraph, CondensedEdge<TVertex, TEdge, TGraph>>)

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

Declaration
public CondensatedGraphRenderer(IEdgeListGraph<TGraph, CondensedEdge<TVertex, TEdge, TGraph>> graph)
Parameters
Type Name Description
IEdgeListGraph<TGraph, CondensedEdge<TVertex, TEdge, TGraph>> graph

Graph to convert to DOT.

Exceptions
Type Condition
System.ArgumentNullException

graph is null.

Methods

| Improve this Doc View Source

Clean()

Cleans renderer after generation.

Declaration
protected override void Clean()
Overrides
QuikGraph.Graphviz.GraphRendererBase<TGraph, QuikGraph.Algorithms.Condensation.CondensedEdge<TVertex, TEdge, TGraph>>.Clean()
| Improve this Doc View Source

Initialize()

Initializes renderer for generation.

Declaration
protected override void Initialize()
Overrides
QuikGraph.Graphviz.GraphRendererBase<TGraph, QuikGraph.Algorithms.Condensation.CondensedEdge<TVertex, TEdge, TGraph>>.Initialize()

Extension Methods

GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, String)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, String, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, XmlWriter)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, XmlReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, String, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeAndValidateFromGraphML<TVertex, TEdge, TGraph>(TGraph, TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
SerializationExtensions.SerializeToXml<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String)
SerializationExtensions.SerializeToXml<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String, Action<XmlWriter, TGraph>, Action<XmlWriter, TVertex>, Action<XmlWriter, TEdge>)
  • Improve this Doc
  • View Source
In This Article
Back to top QuikGraph