- java.lang.Object
-
- org.jgrapht.alg.shortestpath.MartinShortestPath.Label
-
- Enclosing class:
- MartinShortestPath<V,E>
private class MartinShortestPath.Label extends java.lang.Object
A node label.
-
-
Field Summary
Fields Modifier and Type Field Description E
fromPrevious
V
node
MartinShortestPath.Label
previous
double[]
value
-
Constructor Summary
Constructors Constructor Description Label(V node, double[] value, MartinShortestPath.Label previous, E fromPrevious)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
node
public V node
-
value
public double[] value
-
previous
public MartinShortestPath.Label previous
-
fromPrevious
public E fromPrevious
-
-
Constructor Detail
-
Label
public Label(V node, double[] value, MartinShortestPath.Label previous, E fromPrevious)
-
-