Interface IGraph<TVertex, TEdge>
A graph with vertices of type TVertex
and edges of type TEdge.
Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
public interface IGraph<TVertex, TEdge>
where TEdge : IEdge<TVertex>
Type Parameters
| Name | Description |
|---|---|
| TVertex | Vertex type. |
| TEdge | Edge type. |
Properties
| Improve this Doc View SourceAllowParallelEdges
Gets a value indicating if the graph allows parallel edges
Declaration
bool AllowParallelEdges { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
IsDirected
Gets a value indicating if the graph is directed
Declaration
bool IsDirected { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |