TraversalUniqueVertices uses ConstantsTrait
The enumeration of all optionally specify which traversal algorithm to use.
Tags
Table of Contents
Constants
- GLOBAL : string = 'global'
- It is guaranteed that each vertex is visited at most once during the traversal, no matter how many paths lead from the start vertex to this one.
- NONE : string = 'none'
- No uniqueness check is applied on vertices.
- PATH : string = 'path'
- It is guaranteed that there is no path returned with a duplicate vertex.
Constants
GLOBAL
It is guaranteed that each vertex is visited at most once during the traversal, no matter how many paths lead from the start vertex to this one.
public
string
GLOBAL
= 'global'
NONE
No uniqueness check is applied on vertices.
public
string
NONE
= 'none'
PATH
It is guaranteed that there is no path returned with a duplicate vertex.
public
string
PATH
= 'path'