Class is used for storing graph edge. More...
Inherits Finalizable.
Public Member Functions | |
| bool | isValid () |
Public Attributes | |
| double get | weight |
| Edge weight. | |
| int get | dst |
| Destination vertex id GraphVertex. | |
| int get | src |
| Source vertex id GraphVertex. | |
| double get | weightCoef |
| Edge weight coefficient. | |
Class is used for storing graph edge.
Definition at line 21 of file graph_edge.dart.
| bool GraphEdge.isValid | ( | ) |
| int get GraphEdge.dst |
Destination vertex id GraphVertex.
Dart code snippet:
Definition at line 47 of file graph_edge.dart.
| int get GraphEdge.src |
Source vertex id GraphVertex.
Dart code snippet:
Definition at line 58 of file graph_edge.dart.
| double get GraphEdge.weight |
Edge weight.
Dart code snippet:
Definition at line 36 of file graph_edge.dart.
| double get GraphEdge.weightCoef |
Edge weight coefficient.
Dart code snippet:
Definition at line 69 of file graph_edge.dart.