Interface ITermEdge<TVertex>
Represents a directed edge with terminal indexes.
Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
public interface ITermEdge<out TVertex> : IEdge<TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
Properties
| Improve this Doc View SourceSourceTerminal
Index of terminal on source vertex to which this edge is attached.
Declaration
int SourceTerminal { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
TargetTerminal
Index of terminal on target vertex to which this edge is attached.
Declaration
int TargetTerminal { get; }
Property Value
Type | Description |
---|---|
System.Int32 |