Interface IEdgeChain<TVertex, TEdge>
Set of edges forming chain of edges.
Namespace: QuikGraph.Algorithms.RandomWalks
Assembly: QuikGraph.dll
Syntax
public interface IEdgeChain<TVertex, TEdge>
where TEdge : IEdge<TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
TEdge | Edge type. |
Methods
| Improve this Doc View SourceTryGetSuccessor(IImplicitGraph<TVertex, TEdge>, TVertex, out TEdge)
Tries to get the successor of the given vertex
in the given graph
.
Declaration
bool TryGetSuccessor(IImplicitGraph<TVertex, TEdge> graph, TVertex vertex, out TEdge successor)
Parameters
Type | Name | Description |
---|---|---|
IImplicitGraph<TVertex, TEdge> | graph | The graph to search in. |
TVertex | vertex | The vertex. |
TEdge | successor | Found successor, otherwise null. |
Returns
Type | Description |
---|---|
System.Boolean | True if a successor was found, false otherwise. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
System.ArgumentNullException |
|
TryGetSuccessor(IEnumerable<TEdge>, TVertex, out TEdge)
Tries to get the successor of the given vertex
in the given set of edges
.
Declaration
bool TryGetSuccessor(IEnumerable<TEdge> edges, TVertex vertex, out TEdge successor)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<TEdge> | edges | Edge set in which searching. |
TVertex | vertex | The vertex. |
TEdge | successor | Found successor, otherwise null. |
Returns
Type | Description |
---|---|
System.Boolean | True if a successor was found, false otherwise. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
System.ArgumentNullException |
|