Click or drag to resize

BestFirstFrontierSearchAlgorithm<TVertex, TEdge> Class

Inheritance Hierarchy
System.Object
  QuickGraph.Algorithms.AlgorithmBase<IBidirectionalIncidenceGraph<TVertex, TEdge>>
    QuickGraph.Algorithms.RootedAlgorithmBase<TVertex, IBidirectionalIncidenceGraph<TVertex, TEdge>>
      QuickGraph.Algorithms.RootedSearchAlgorithmBase<TVertex, IBidirectionalIncidenceGraph<TVertex, TEdge>>
        QuickGraph.Algorithms.Search.BestFirstFrontierSearchAlgorithm<TVertex, TEdge>

Namespace:  QuickGraph.Algorithms.Search
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public sealed class BestFirstFrontierSearchAlgorithm<TVertex, TEdge> : RootedSearchAlgorithmBase<TVertex, IBidirectionalIncidenceGraph<TVertex, TEdge>>, 
	ITreeBuilderAlgorithm<TVertex, TEdge>
where TEdge : Object, IEdge<TVertex>

Type Parameters

TVertex
TEdge

The BestFirstFrontierSearchAlgorithm<TVertex, TEdge> type exposes the following members.

Constructors
Properties
Methods
  NameDescription
Public methodAbort (Inherited from AlgorithmBase<TGraph>.)
Public methodClearGoalVertex (Inherited from RootedSearchAlgorithmBase<TVertex, TGraph>.)
Public methodClearRootVertex (Inherited from RootedAlgorithmBase<TVertex, TGraph>.)
Public methodCompute() (Inherited from AlgorithmBase<TGraph>.)
Public methodCompute(TVertex) (Inherited from RootedAlgorithmBase<TVertex, TGraph>.)
Public methodCompute(TVertex, TVertex) (Inherited from RootedSearchAlgorithmBase<TVertex, TGraph>.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetService<T> (Inherited from AlgorithmBase<TGraph>.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodSetGoalVertex (Inherited from RootedSearchAlgorithmBase<TVertex, TGraph>.)
Public methodSetRootVertex (Inherited from RootedAlgorithmBase<TVertex, TGraph>.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTryGetGoalVertex (Inherited from RootedSearchAlgorithmBase<TVertex, TGraph>.)
Public methodTryGetRootVertex (Inherited from RootedAlgorithmBase<TVertex, TGraph>.)
Public methodTryGetService<T>(T) (Inherited from AlgorithmBase<TGraph>.)
Top
Events
  NameDescription
Public eventAborted (Inherited from AlgorithmBase<TGraph>.)
Public eventFinished (Inherited from AlgorithmBase<TGraph>.)
Public eventGoalReached (Inherited from RootedSearchAlgorithmBase<TVertex, TGraph>.)
Public eventGoalVertexChanged (Inherited from RootedSearchAlgorithmBase<TVertex, TGraph>.)
Public eventRootVertexChanged (Inherited from RootedAlgorithmBase<TVertex, TGraph>.)
Public eventStarted (Inherited from AlgorithmBase<TGraph>.)
Public eventStateChanged (Inherited from AlgorithmBase<TGraph>.)
Public eventTreeEdge
Top
See Also