Show / Hide Table of Contents

Class CloneableVertexGraphExplorerAlgorithm<TVertex, TEdge>.DefaultFinishedPredicate

Default implementation of the finished predicate.

Inheritance
System.Object
CloneableVertexGraphExplorerAlgorithm<TVertex, TEdge>.DefaultFinishedPredicate
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.Exploration
Assembly: QuikGraph.dll
Syntax
public sealed class DefaultFinishedPredicate

Constructors

| Improve this Doc View Source

DefaultFinishedPredicate()

Initializes a new instance of the CloneableVertexGraphExplorerAlgorithm<TVertex, TEdge>.DefaultFinishedPredicate class.

Declaration
public DefaultFinishedPredicate()
| Improve this Doc View Source

DefaultFinishedPredicate(Int32, Int32)

Initializes a new instance of the CloneableVertexGraphExplorerAlgorithm<TVertex, TEdge>.DefaultFinishedPredicate class.

Declaration
public DefaultFinishedPredicate(int maxVertexCount, int maxEdgeCount)
Parameters
Type Name Description
System.Int32 maxVertexCount

Maximum number of vertices.

System.Int32 maxEdgeCount

Maximum number of edges.

Properties

| Improve this Doc View Source

MaxEdgeCount

Maximum number of edges (for exploration).

Declaration
public int MaxEdgeCount { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

MaxVertexCount

Maximum number of vertices (for exploration).

Declaration
public int MaxVertexCount { get; set; }
Property Value
Type Description
System.Int32

Methods

| Improve this Doc View Source

Test(CloneableVertexGraphExplorerAlgorithm<TVertex, TEdge>)

Checks if the given algorithm explorer has finished or not.

Declaration
public bool Test(CloneableVertexGraphExplorerAlgorithm<TVertex, TEdge> algorithm)
Parameters
Type Name Description
CloneableVertexGraphExplorerAlgorithm<TVertex, TEdge> algorithm

Algorithm explorer to check.

Returns
Type Description
System.Boolean

True if the explorer can continue to explore, false otherwise.

Exceptions
Type Condition
System.ArgumentNullException

algorithm is null.

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