Package | Description |
---|---|
lavesdk.math.graph | |
lavesdk.utils |
Modifier and Type | Class and Description |
---|---|
class |
Path<V extends Vertex>
Represents a path in a
Graph . |
class |
Trail<V extends Vertex>
Represents a trail in a
Graph . |
Modifier and Type | Method and Description |
---|---|
Walk<V> |
WalkByID.cast()
|
Walk<V> |
Walk.clone()
Gets a shallow copy of this walk (the vertices in the walk are not cloned).
|
Modifier and Type | Method and Description |
---|---|
boolean |
Walk.equals(Walk<V> w)
Indicates whether this walk equals the specified one.
|
void |
Walk.insert(Walk<V> w,
boolean back)
Inserts a closed walk.
|
void |
Trail.insert(Walk<V> w,
boolean back)
Inserts a closed trail at the first occurrence of the starting vertex.
|
void |
Path.insert(Walk<V> w,
boolean back)
It is not possible to insert another path!
|
void |
Walk.insert(Walk<V> w,
int index)
Inserts a closed walk.
|
void |
Trail.insert(Walk<V> w,
int index)
Inserts a closed trail at the first occurrence of the starting vertex.
|
void |
Path.insert(Walk<V> w,
int index)
It is not possible to insert another path!
|
protected void |
Walk.insertImpl(int index,
Walk<V> w)
The implementation of insert a walk in this walk.
|
protected void |
Trail.insertImpl(int index,
Walk<V> w) |
Modifier and Type | Method and Description |
---|---|
static <V extends Vertex> |
GraphUtils.toWalk(java.lang.String walk,
Graph<V,?> graph)
Converts a specified walk as a string in a concrete
Walk . |