Class MaximumCliqueAlgorithmBase<TVertex, TEdge>
Base class for all maximum clique graph algorithm.
Inheritance
System.Object
AlgorithmBase<IUndirectedGraph<TVertex, TEdge>>
MaximumCliqueAlgorithmBase<TVertex, TEdge>
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.Cliques
Assembly: QuikGraph.dll
Syntax
[Serializable]
public abstract class MaximumCliqueAlgorithmBase<TVertex, TEdge> : AlgorithmBase<IUndirectedGraph<TVertex, TEdge>>, IAlgorithm<IUndirectedGraph<TVertex, TEdge>>, IComputation, IAlgorithmComponent where TEdge : IEdge<TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
TEdge | Edge type. |
Constructors
| Improve this Doc View SourceMaximumCliqueAlgorithmBase(IAlgorithmComponent, IUndirectedGraph<TVertex, TEdge>)
Initializes a new instance of the MaximumCliqueAlgorithmBase<TVertex, TEdge> class.
Declaration
protected MaximumCliqueAlgorithmBase(IAlgorithmComponent host, IUndirectedGraph<TVertex, TEdge> visitedGraph)
Parameters
Type | Name | Description |
---|---|---|
IAlgorithmComponent | host | Host to use if set, otherwise use this reference. |
IUndirectedGraph<TVertex, TEdge> | visitedGraph | Graph to visit. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
MaximumCliqueAlgorithmBase(IUndirectedGraph<TVertex, TEdge>)
Initializes a new instance of the MaximumCliqueAlgorithmBase<TVertex, TEdge> class.
Declaration
protected MaximumCliqueAlgorithmBase(IUndirectedGraph<TVertex, TEdge> visitedGraph)
Parameters
Type | Name | Description |
---|---|---|
IUndirectedGraph<TVertex, TEdge> | visitedGraph | Graph to visit. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|