getPaths

abstract fun getPaths(startFrom: V, endWith: V, limit: Int = -1): List<Path<V, E>>

Returns list of all possible paths between startFrom and endWith vertexes. The result list will be sorted by total path weight from minimal to maximum.

Throws