|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Path | |
|---|---|
| com.kuka.graph | This package contains the main interfaces and utility classes for working with graphs. |
| com.kuka.graph.alg | This package contains graph algorithms. |
| com.kuka.graph.cost | This package contains the base classes and interfaces for cost functions used by graph algorithms. |
| com.kuka.graph.impl | This package contains the base implementations of the graph and edge interface. |
| Uses of Path in com.kuka.graph |
|---|
| Methods in com.kuka.graph that return Path | ||
|---|---|---|
Path<N,E> |
Path.concat(Path<N,E> other)
Concatenates the specified path to the end of this path. |
|
static
|
Graphs.emptyPath()
Returns the empty path (immutable). |
|
| Methods in com.kuka.graph with parameters of type Path | |
|---|---|
Path<N,E> |
Path.concat(Path<N,E> other)
Concatenates the specified path to the end of this path. |
| Uses of Path in com.kuka.graph.alg |
|---|
| Methods in com.kuka.graph.alg that return Path | |
|---|---|
Path<N,E> |
AStar.getShortestPath()
Determines the shortest path, i.e. the path with minimum overall cost from start to goal. |
Path<N,E> |
Dijkstra.getShortestPath(N goal)
Determines the shortest path to goal, i.e. the path with minimum overall cost from start to goal. |
| Uses of Path in com.kuka.graph.cost |
|---|
| Methods in com.kuka.graph.cost with parameters of type Path | |
|---|---|
double |
CostFunction.evaluate(Path<N,E> path)
Evaluate the cost of a path. |
double |
AbstractBaseCostFunction.evaluate(Path<N,E> path)
|
| Uses of Path in com.kuka.graph.impl |
|---|
| Classes in com.kuka.graph.impl that implement Path | |
|---|---|
class |
BasePath<N,E extends Edge<N>>
Class realizing a path in a directed graph. |
class |
FastUncheckedPath<N,E extends Edge<N>>
Implements a path. |
| Methods in com.kuka.graph.impl that return Path | |
|---|---|
Path<N,E> |
FastUncheckedPath.concat(Path<N,E> other)
|
Path<N,E> |
BasePath.concat(Path<N,E> other)
|
| Methods in com.kuka.graph.impl with parameters of type Path | |
|---|---|
Path<N,E> |
FastUncheckedPath.concat(Path<N,E> other)
|
Path<N,E> |
BasePath.concat(Path<N,E> other)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||