public interface AnalysisInfo
Modifier and Type | Method and Description |
---|---|
double |
getCurrentCost()
Returns the path cost of current node
|
int |
getCurrentDepth()
Returns the path depth of current node.
|
double |
getCurrentDuration()
Returnspath the path duration of current node
|
Link |
getCurrentLink()
Returns the current link.
|
Node |
getCurrentNode()
Returns the current node.
|
double |
getNextCost()
Returns the path cost of next node
|
int |
getNextDepth()
Returns the path depth of next node.
|
double |
getNextDuration()
Returnspath the path duration of next node
|
Link |
getNextLink()
Returns the next link.
|
Node |
getNextNode()
Returns the next node.
|
java.util.Vector |
getPathLinkVec()
Returns the current path links as a Vector.
|
java.util.Vector |
getPathNodeVec()
Returns the current path nodes as a Vector.
|
Node |
getStartNode()
Returns the start node.
|
double[][] |
getTspNodeDuration()
Returns the TSP path node duration in an array of double The order of the duration is the same as the one in getTSPNodeNodeOrder() the duration is returned as an array of two doubles duration[i][0] represents the arrival duration for the i-th TSP node and This information is only used for TSP related analys
|
Node[] |
getTspNodeOrder()
Returns the TSP path node visit order in an array of Node This information is only used for TSP related analysis
|
Node getStartNode()
Node getCurrentNode()
Node getNextNode()
Link getCurrentLink()
Link getNextLink()
int getCurrentDepth()
int getNextDepth()
double getCurrentCost()
double getNextCost()
java.util.Vector getPathLinkVec()
java.util.Vector getPathNodeVec()
double getCurrentDuration()
double getNextDuration()
Node[] getTspNodeOrder()
double[][] getTspNodeDuration()