Show / Hide Table of Contents

Interface IVertexEdgeDictionary<TVertex, TEdge>

A cloneable dictionary of vertices associated to their edges.

Inherited Members
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.Add(TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>)
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.ContainsKey(TVertex)
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.Remove(TVertex)
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.TryGetValue(TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>)
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.Item[TVertex]
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.Keys
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.Values
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.Add(System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>)
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.Clear()
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.Contains(System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>)
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.CopyTo(System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>[], System.Int32)
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.Remove(System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>)
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.Count
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.IsReadOnly
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.GetEnumerator()
System.Collections.IEnumerable.GetEnumerator()
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
Namespace: QuikGraph.Collections
Assembly: QuikGraph.dll
Syntax
public interface IVertexEdgeDictionary<TVertex, TEdge> : IDictionary<TVertex, IEdgeList<TVertex, TEdge>>, ICollection<KeyValuePair<TVertex, IEdgeList<TVertex, TEdge>>>, IEnumerable<KeyValuePair<TVertex, IEdgeList<TVertex, TEdge>>>, IEnumerable, ICloneable, ISerializable where TEdge : IEdge<TVertex>
Type Parameters
Name Description
TVertex

Vertex type.

TEdge

Edge type.

Methods

| Improve this Doc View Source

Clone()

Gets a clone of the dictionary. The vertices and edges are not cloned.

Declaration
IVertexEdgeDictionary<TVertex, TEdge> Clone()
Returns
Type Description
IVertexEdgeDictionary<TVertex, TEdge>

Cloned dictionary.

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>)
EdgeExtensions.IsPath<TVertex, TEdge>(IEnumerable<TEdge>)
EdgeExtensions.HasCycles<TVertex, TEdge>(IEnumerable<TEdge>)
EdgeExtensions.IsPathWithoutCycles<TVertex, TEdge>(IEnumerable<TEdge>)
GraphExtensions.ToDelegateVertexAndEdgeListGraph<TVertex, TEdge, TEdges>(IDictionary<TVertex, TEdges>)
GraphExtensions.ToDelegateVertexAndEdgeListGraph<TVertex, TEdge, TValue>(IDictionary<TVertex, TValue>, Converter<KeyValuePair<TVertex, TValue>, IEnumerable<TEdge>>)
GraphExtensions.ToDelegateVertexAndEdgeListGraph<TVertex, TEdge>(IEnumerable<TVertex>, TryFunc<TVertex, IEnumerable<TEdge>>)
GraphExtensions.ToDelegateVertexAndEdgeListGraph<TVertex, TEdge>(IEnumerable<TVertex>, Func<TVertex, IEnumerable<TEdge>>)
GraphExtensions.ToDelegateUndirectedGraph<TVertex, TEdge>(IEnumerable<TVertex>, TryFunc<TVertex, IEnumerable<TEdge>>)
GraphExtensions.ToDelegateUndirectedGraph<TVertex, TEdge>(IEnumerable<TVertex>, Func<TVertex, IEnumerable<TEdge>>)
GraphExtensions.ToAdjacencyGraph<TVertex, TEdge>(IEnumerable<TEdge>, Boolean)
GraphExtensions.ToAdjacencyGraph<TVertex, TEdge>(IEnumerable<TVertex>, Func<TVertex, IEnumerable<TEdge>>, Boolean)
GraphExtensions.ToBidirectionalGraph<TVertex, TEdge>(IEnumerable<TEdge>, Boolean)
GraphExtensions.ToBidirectionalGraph<TVertex, TEdge>(IEnumerable<TVertex>, Func<TVertex, IEnumerable<TEdge>>, Boolean)
GraphExtensions.ToUndirectedGraph<TVertex, TEdge>(IEnumerable<TEdge>, Boolean)
AlgorithmExtensions.IsDirectedAcyclicGraph<TVertex, TEdge>(IEnumerable<TEdge>)
AlgorithmExtensions.IsUndirectedAcyclicGraph<TVertex, TEdge>(IEnumerable<TEdge>)
  • Improve this Doc
  • View Source
In This Article
Back to top QuikGraph