diff --git a/0.4.1-snapshot/allclasses-index.html b/0.4.1-snapshot/allclasses-index.html index f7c081bc43..41834b1242 100644 --- a/0.4.1-snapshot/allclasses-index.html +++ b/0.4.1-snapshot/allclasses-index.html @@ -2,10 +2,10 @@
- +IPath
subPath(int fromEdgeIndex,
+ int toEdgeIndex)
fromEdgeIndex
, inclusive,
+ and toEdgeIndex
, exclusive.default Integer
target()
int
targetInt()
static IPath
valueOf(IntGraph g,
int source,
@@ -266,13 +275,22 @@ Method Summary
Create a new path from an edge list, a source and a target vertices.
IntList
vertices()
static IntIterator
verticesIter(IntGraph g,
+ int source,
+ IntList edges)
IPath subPath(int fromEdgeIndex, + int toEdgeIndex)+
Path
fromEdgeIndex
, inclusive,
+ and toEdgeIndex
, exclusive.
+
+ + This method is equivalent to the following code: + +
+ List<E> edges = edges().subList(fromEdgeIndex, toEdgeIndex);
+ V source = vertices().get(fromEdgeIndex);
+ V target = vertices().get(toEdgeIndex);
+ return Path.valueOf(graph(), source, target, edges);
+
static IntIterator verticesIter(IntGraph g, + int source, + IntList edges)+
+ The returned iterator will be identical to the iterator of vertices()
}.
+
+
+ This method assume the list of edges is a valid path in the graph starting from the given source vertex, no + validation is performed to check that.
g
- a graphsource
- the source vertex of the pathedges
- a list of edges that from a path starting from source
Path<V,E>
subPath(int fromEdgeIndex,
+ int toEdgeIndex)
fromEdgeIndex
, inclusive,
+ and toEdgeIndex
, exclusive.V
target()
static <V,E>
Path<V,E>
valueOf(Graph<V,E> g,
V source,
@@ -287,13 +296,22 @@ Method Summary
Create a new path from an edge list, a source and a target vertices.
List<V>
vertices()
static <V,E>
Iterator<V>
verticesIter(Graph<V,E> g,
+ V source,
+ List<E> edges)
The path is defined as a list of edges \(e_1,e_2,\ldots\), where each target vertex of an edge \(e_i\) is the source vertex of the next edge \(e_{i+1}\). The list of vertices of this path is the vertices visited by - this path, ordered by their visit order. If this path form a cycle, the vertices list size is the same as the - edge list (it does not include the source vertex, which is also the target vertex, twice), otherwise it is - greater by one. + this path, ordered by their visit order. The first vertex is the source of the path and the last vertex is the + target of the path. The size of the returned list is always the size of the edges list plus one. + +
+ Note that if this path is a cycle, the first and last vertices in the returned list are the same vertex.
Path<V,E> subPath(int fromEdgeIndex, + int toEdgeIndex)+
fromEdgeIndex
, inclusive,
+ and toEdgeIndex
, exclusive.
+
+ + This method is equivalent to the following code: + +
+ List<E> edges = edges().subList(fromEdgeIndex, toEdgeIndex);
+ V source = vertices().get(fromEdgeIndex);
+ V target = vertices().get(toEdgeIndex);
+ return Path.valueOf(graph(), source, target, edges);
+
fromEdgeIndex
- low endpoint (inclusive) of the edges subListtoEdgeIndex
- high endpoint (exclusive) of the edges subListIndexOutOfBoundsException
- if fromEdgeIndex < 0
or toEdgeIndex > edgesNum
or
+ fromEdgeIndex > toEdgeIndex
static <V,E> Iterator<V> verticesIter(Graph<V,E> g, + V source, + List<E> edges)+
+ The returned iterator will be identical to the iterator of vertices()
}.
+
+
+ This method assume the list of edges is a valid path in the graph starting from the given source vertex, no + validation is performed to check that. + +
+ If the passed graph is an instance of IntGraph
, the returned iterator will be an instance of
+ IntIterator
.
V
- the vertices typeE
- the edges typeg
- a graphsource
- the source vertex of the pathedges
- a list of edges that from a path starting from source
IPath
subPath(int fromEdgeIndex,
+ int toEdgeIndex)
static IPath
valueOf(IntGraph g,
int source,
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/IVertexBiPartition.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/IVertexBiPartition.html
index 860a0778ce..cdd7fd7384 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/IVertexBiPartition.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/IVertexBiPartition.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.IVertexBiPartition (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/IVertexPartition.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/IVertexPartition.html
index 309e815e51..58c420ed05 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/IVertexPartition.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/IVertexPartition.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.IVertexPartition (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismIMapping.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismIMapping.html
index 9ae4d02033..960137b21f 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismIMapping.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismIMapping.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.IsomorphismIMapping (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismMapping.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismMapping.html
index ecd7f6069a..171313d287 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismMapping.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismMapping.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.IsomorphismMapping (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismTester.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismTester.html
index 3b9fe22bbe..f66505f7f5 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismTester.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/IsomorphismTester.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.IsomorphismTester (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/KEdgeConnectedComponentsAlgo.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/KEdgeConnectedComponentsAlgo.html
index a4c12ff8cb..02d13fb956 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/KEdgeConnectedComponentsAlgo.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/KEdgeConnectedComponentsAlgo.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.KEdgeConnectedComponentsAlgo (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/KShortestPathsST.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/KShortestPathsST.html
index 9f65df4a26..616e79d67e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/KShortestPathsST.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/KShortestPathsST.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.KShortestPathsST (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.IResult.html
index 9351489a3b..aa74a5b83e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.KVertexConnectedComponentsAlgo.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.Result.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.Result.html
index 9a3293d6cd..312747eeb1 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.KVertexConnectedComponentsAlgo.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.html
index 3bd984079b..5fcdedb79c 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/KVertexConnectedComponentsAlgo.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.KVertexConnectedComponentsAlgo (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.Builder.html
index 8341deadc5..52772fd146 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.LowestCommonAncestorDynamic.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.Vertex.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.Vertex.html
index e2ecff95e1..cb25fca0f4 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.Vertex.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.Vertex.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.LowestCommonAncestorDynamic.Vertex (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.html
index f832709622..670696ba05 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorDynamic.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.LowestCommonAncestorDynamic (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.IQueries.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.IQueries.html
index 775434dec4..f27af7121e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.IQueries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.IQueries.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.LowestCommonAncestorOffline.IQueries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.IResult.html
index eaf290c7f2..b752f7b795 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.LowestCommonAncestorOffline.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.Queries.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.Queries.html
index 2c60c06614..aa81601fe6 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.Queries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.Queries.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.LowestCommonAncestorOffline.Queries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.Result.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.Result.html
index 9324f02de3..b34cec2e93 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.LowestCommonAncestorOffline.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.html
index 79a1692e9d..f14eaf7879 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorOffline.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.LowestCommonAncestorOffline (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.DataStructure.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.DataStructure.html
index f831028402..28f2d75f09 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.DataStructure.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.DataStructure.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.LowestCommonAncestorStatic.DataStructure (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.IDataStructure.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.IDataStructure.html
index fa5b9a0cd6..8ded654df2 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.IDataStructure.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.IDataStructure.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.LowestCommonAncestorStatic.IDataStructure (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.html
index 08a2b67ad3..a9807e8486 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/LowestCommonAncestorStatic.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.LowestCommonAncestorStatic (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/Matching.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/Matching.html
index 202d016983..49d2337633 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/Matching.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/Matching.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.Matching (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MatchingAlgo.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MatchingAlgo.Builder.html
index 0f44787d4e..a8d1d44913 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MatchingAlgo.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MatchingAlgo.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MatchingAlgo.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MatchingAlgo.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MatchingAlgo.html
index d9ffc00d71..ac9400c472 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MatchingAlgo.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MatchingAlgo.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MatchingAlgo (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximalCliquesEnumerator.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximalCliquesEnumerator.Builder.html
index 365e112c83..b7aa3a9869 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximalCliquesEnumerator.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximalCliquesEnumerator.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MaximalCliquesEnumerator.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximalCliquesEnumerator.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximalCliquesEnumerator.html
index a7045c1f9e..a0841e46d9 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximalCliquesEnumerator.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximalCliquesEnumerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MaximalCliquesEnumerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximumFlow.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximumFlow.Builder.html
index 777ce5caaa..47b6693876 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximumFlow.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximumFlow.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MaximumFlow.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximumFlow.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximumFlow.html
index 3fd2f3e5af..388429831e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximumFlow.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MaximumFlow.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MaximumFlow (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumCostFlow.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumCostFlow.Builder.html
index bfe26ad969..a501cd1374 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumCostFlow.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumCostFlow.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumCostFlow.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumCostFlow.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumCostFlow.html
index fd10d32ede..6afbb85946 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumCostFlow.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumCostFlow.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumCostFlow (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumDirectedSpanningTree.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumDirectedSpanningTree.html
index d93b5afc0f..8fb2769f09 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumDirectedSpanningTree.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumDirectedSpanningTree.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumDirectedSpanningTree (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutAllST.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutAllST.html
index 01f5999611..aa40de7a7c 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutAllST.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutAllST.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumEdgeCutAllST (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutGlobal.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutGlobal.html
index 96ac8f0287..719207adfd 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutGlobal.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutGlobal.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumEdgeCutGlobal (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutST.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutST.html
index bb69b7d565..4a4a4e830e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutST.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumEdgeCutST.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumEdgeCutST (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumMeanCycle.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumMeanCycle.Builder.html
index 9658ebc2e2..db024064bc 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumMeanCycle.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumMeanCycle.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumMeanCycle.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumMeanCycle.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumMeanCycle.html
index 7cf76109ca..9207ae8d6c 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumMeanCycle.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumMeanCycle.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumMeanCycle (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.Builder.html
index ef9218da57..4aec01225e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumSpanningTree.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.IResult.html
index 7498ee46b7..a64486a623 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumSpanningTree.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.Result.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.Result.html
index aa99dd3340..175e41c09f 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumSpanningTree.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.html
index b113480132..5c3881de2f 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumSpanningTree.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumSpanningTree (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutAllGlobal.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutAllGlobal.html
index a544e5205b..0154082014 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutAllGlobal.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutAllGlobal.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumVertexCutAllGlobal (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutAllST.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutAllST.html
index cbfbb9e56a..936d621718 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutAllST.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutAllST.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumVertexCutAllST (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutGlobal.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutGlobal.html
index ce72978043..90fb830dd9 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutGlobal.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutGlobal.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumVertexCutGlobal (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutST.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutST.html
index 2155cf7618..e58ab7a022 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutST.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/MinimumVertexCutST.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.MinimumVertexCutST (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/NegativeCycleException.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/NegativeCycleException.html
index 533b3df993..a845e10b56 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/NegativeCycleException.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/NegativeCycleException.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.alg.NegativeCycleException (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/Path.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/Path.html
index 89a17b00c9..300c309ef2 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/Path.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/Path.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.Path (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
@@ -247,6 +247,15 @@ Uses of Path
Path<V,E>
subPath(int fromEdgeIndex,
+ int toEdgeIndex)
fromEdgeIndex
, inclusive,
+ and toEdgeIndex
, exclusive.static <V,E>
Path<V,E>
valueOf(Graph<V,E> g,
V source,
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomWalkIter.Int.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomWalkIter.Int.html
index 14967cb67c..9342a622bb 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomWalkIter.Int.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomWalkIter.Int.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.RandomWalkIter.Int (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomWalkIter.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomWalkIter.html
index 46d4ce74be..cafd045a1e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomWalkIter.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomWalkIter.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.RandomWalkIter (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomizedAlgorithm.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomizedAlgorithm.html
index 4342d7b0d5..397da8eb80 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomizedAlgorithm.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/RandomizedAlgorithm.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.RandomizedAlgorithm (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.Builder.html
index 60e306842c..10db3d79f1 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathAllPairs.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.IResult.html
index daa24cd659..645f87cde4 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathAllPairs.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.Result.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.Result.html
index 75bd05f667..bbe399b820 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathAllPairs.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.html
index b5b074e4cb..e85e9ae434 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathAllPairs.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathAllPairs (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathHeuristicST.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathHeuristicST.Builder.html
index 7431642f18..1bc0434a00 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathHeuristicST.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathHeuristicST.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathHeuristicST.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathHeuristicST.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathHeuristicST.html
index 26f33553b3..a3385681cb 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathHeuristicST.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathHeuristicST.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathHeuristicST (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathST.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathST.Builder.html
index 72bd09fd99..b4ea2a85c6 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathST.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathST.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathST.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathST.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathST.html
index 187d25447b..8f1edd3f2f 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathST.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathST.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathST (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.Builder.html
index fc28635288..63748ecf4f 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathSingleSource.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.IResult.html
index 1ae1ad7f62..29f418c1fd 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathSingleSource.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.Result.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.Result.html
index 35c2e87428..0f4a0cb61c 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathSingleSource.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.html
index 416f6f89f3..8201e4d402 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/ShortestPathSingleSource.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.ShortestPathSingleSource (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/SimplePathsEnumerator.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/SimplePathsEnumerator.html
index b97fbbc7ad..365954931e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/SimplePathsEnumerator.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/SimplePathsEnumerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.SimplePathsEnumerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.IResult.html
index 6d2a5aee5f..32db07532a 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.SteinerTreeAlgo.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.Result.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.Result.html
index 267265b653..657de4c76d 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.SteinerTreeAlgo.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.html
index 18152672d5..4bfcb7b7e0 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/SteinerTreeAlgo.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.SteinerTreeAlgo (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/StronglyConnectedComponentsAlgo.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/StronglyConnectedComponentsAlgo.Builder.html
index 279d091df9..b15e2cc48b 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/StronglyConnectedComponentsAlgo.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/StronglyConnectedComponentsAlgo.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.StronglyConnectedComponentsAlgo.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/StronglyConnectedComponentsAlgo.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/StronglyConnectedComponentsAlgo.html
index 9f4e348f58..c317dfc088 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/StronglyConnectedComponentsAlgo.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/StronglyConnectedComponentsAlgo.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.StronglyConnectedComponentsAlgo (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.IResult.html
index 72d3537670..c405a863e3 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.TopologicalOrderAlgo.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.Result.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.Result.html
index b6c38e8892..1b589f8f85 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.TopologicalOrderAlgo.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.html
index 0f42ff1dba..51bec3f188 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TopologicalOrderAlgo.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.TopologicalOrderAlgo (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Builder.html
index 6a3d5a4574..18c14cdb40 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.TreePathMaxima.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.IQueries.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.IQueries.html
index c77784f36f..ea5edd8cab 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.IQueries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.IQueries.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.TreePathMaxima.IQueries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.IResult.html
index b1cb599d1b..3232e019bb 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.TreePathMaxima.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Queries.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Queries.html
index 191219e205..c19ce9486f 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Queries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Queries.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.TreePathMaxima.Queries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Result.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Result.html
index 97a5a271e8..c3cd8e97d7 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.TreePathMaxima.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.html
index e44cc5c9b0..e74e5dcd66 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TreePathMaxima.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.TreePathMaxima (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/Trees.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/Trees.html
index 3cc5cfb984..a58f842ec8 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/Trees.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/Trees.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.alg.Trees (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetric.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetric.html
index 670cd98a7d..f25c6d5ac2 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetric.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetric.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.TspMetric (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetricMSTAppx.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetricMSTAppx.html
index 3189591cc6..6af9e511ef 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetricMSTAppx.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetricMSTAppx.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.alg.TspMetricMSTAppx (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetricMatchingAppx.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetricMatchingAppx.html
index 15f7edd321..283be32b9b 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetricMatchingAppx.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/TspMetricMatchingAppx.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.alg.TspMetricMatchingAppx (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexBiPartition.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexBiPartition.html
index 04e58fd8d1..001bde98c3 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexBiPartition.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexBiPartition.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.VertexBiPartition (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexCover.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexCover.html
index 397e66dbf7..de59ebee8b 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexCover.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexCover.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.VertexCover (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexPartition.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexPartition.html
index 71e7c4b919..c6f2cb21fe 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexPartition.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/VertexPartition.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.VertexPartition (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.IResult.html
index 43786d4160..c6ca1938ac 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.VoronoiAlgo.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.Result.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.Result.html
index d8b9200e5a..4ac5301a91 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.VoronoiAlgo.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.html
index e493ec41be..0be0e00a00 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/VoronoiAlgo.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.VoronoiAlgo (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/class-use/WeaklyConnectedComponentsAlgo.html b/0.4.1-snapshot/com/jgalgo/alg/class-use/WeaklyConnectedComponentsAlgo.html
index 0042892634..2e5173bcde 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/class-use/WeaklyConnectedComponentsAlgo.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/class-use/WeaklyConnectedComponentsAlgo.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.WeaklyConnectedComponentsAlgo (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/package-summary.html b/0.4.1-snapshot/com/jgalgo/alg/package-summary.html
index 8f9e1f3267..ee08e72c5f 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/package-summary.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/package-summary.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.alg (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/package-tree.html b/0.4.1-snapshot/com/jgalgo/alg/package-tree.html
index 1605a02573..986cb4bcc6 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/package-tree.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/package-tree.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.alg Class Hierarchy (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/package-use.html b/0.4.1-snapshot/com/jgalgo/alg/package-use.html
index cb9c71c03d..e28578765b 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/package-use.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/package-use.html
@@ -2,10 +2,10 @@
-
+
Uses of Package com.jgalgo.alg (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/class-use/JGAlgoConfig.html b/0.4.1-snapshot/com/jgalgo/class-use/JGAlgoConfig.html
index 593fee9ee7..c05b3e16b6 100644
--- a/0.4.1-snapshot/com/jgalgo/class-use/JGAlgoConfig.html
+++ b/0.4.1-snapshot/com/jgalgo/class-use/JGAlgoConfig.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.JGAlgoConfig (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/BfsDfsExample.html b/0.4.1-snapshot/com/jgalgo/example/BfsDfsExample.html
index 164e899820..cfca8ece46 100644
--- a/0.4.1-snapshot/com/jgalgo/example/BfsDfsExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/BfsDfsExample.html
@@ -2,10 +2,10 @@
-
+
BfsDfsExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/ColoringExample.html b/0.4.1-snapshot/com/jgalgo/example/ColoringExample.html
index 111ec0082b..df9b23cbe8 100644
--- a/0.4.1-snapshot/com/jgalgo/example/ColoringExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/ColoringExample.html
@@ -2,10 +2,10 @@
-
+
ColoringExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/EdgeIterationExample.html b/0.4.1-snapshot/com/jgalgo/example/EdgeIterationExample.html
index ac7533b732..0a239be58e 100644
--- a/0.4.1-snapshot/com/jgalgo/example/EdgeIterationExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/EdgeIterationExample.html
@@ -2,10 +2,10 @@
-
+
EdgeIterationExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/LowestCommonAncestorExample.html b/0.4.1-snapshot/com/jgalgo/example/LowestCommonAncestorExample.html
index a4a95f9ca9..ec6882b02e 100644
--- a/0.4.1-snapshot/com/jgalgo/example/LowestCommonAncestorExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/LowestCommonAncestorExample.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/MaximumMatchingExample.html b/0.4.1-snapshot/com/jgalgo/example/MaximumMatchingExample.html
index c13424afa3..ff5f145c84 100644
--- a/0.4.1-snapshot/com/jgalgo/example/MaximumMatchingExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/MaximumMatchingExample.html
@@ -2,10 +2,10 @@
-
+
MaximumMatchingExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/MinimumSpanningTreeExample.html b/0.4.1-snapshot/com/jgalgo/example/MinimumSpanningTreeExample.html
index 94277cdea8..e2c63f097d 100644
--- a/0.4.1-snapshot/com/jgalgo/example/MinimumSpanningTreeExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/MinimumSpanningTreeExample.html
@@ -2,10 +2,10 @@
-
+
MinimumSpanningTreeExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/ShortestPathExample.html b/0.4.1-snapshot/com/jgalgo/example/ShortestPathExample.html
index 4d7813d34e..b5ffa5d00d 100644
--- a/0.4.1-snapshot/com/jgalgo/example/ShortestPathExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/ShortestPathExample.html
@@ -2,10 +2,10 @@
-
+
ShortestPathExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/class-use/BfsDfsExample.html b/0.4.1-snapshot/com/jgalgo/example/class-use/BfsDfsExample.html
index bc9437417d..7aa7817914 100644
--- a/0.4.1-snapshot/com/jgalgo/example/class-use/BfsDfsExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/class-use/BfsDfsExample.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.example.BfsDfsExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/class-use/ColoringExample.html b/0.4.1-snapshot/com/jgalgo/example/class-use/ColoringExample.html
index e2dd0ff457..bacd6dfece 100644
--- a/0.4.1-snapshot/com/jgalgo/example/class-use/ColoringExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/class-use/ColoringExample.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.example.ColoringExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/class-use/EdgeIterationExample.html b/0.4.1-snapshot/com/jgalgo/example/class-use/EdgeIterationExample.html
index f28ddd5dc8..31f9cad5d1 100644
--- a/0.4.1-snapshot/com/jgalgo/example/class-use/EdgeIterationExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/class-use/EdgeIterationExample.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.example.EdgeIterationExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/class-use/LowestCommonAncestorExample.html b/0.4.1-snapshot/com/jgalgo/example/class-use/LowestCommonAncestorExample.html
index c9d057e9f5..eea51b2303 100644
--- a/0.4.1-snapshot/com/jgalgo/example/class-use/LowestCommonAncestorExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/class-use/LowestCommonAncestorExample.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.example.LowestCommonAncestorExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/class-use/MaximumMatchingExample.html b/0.4.1-snapshot/com/jgalgo/example/class-use/MaximumMatchingExample.html
index 3981a23fa4..6d9c356805 100644
--- a/0.4.1-snapshot/com/jgalgo/example/class-use/MaximumMatchingExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/class-use/MaximumMatchingExample.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.example.MaximumMatchingExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/class-use/MinimumSpanningTreeExample.html b/0.4.1-snapshot/com/jgalgo/example/class-use/MinimumSpanningTreeExample.html
index 33f6a6617e..4f6094fb97 100644
--- a/0.4.1-snapshot/com/jgalgo/example/class-use/MinimumSpanningTreeExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/class-use/MinimumSpanningTreeExample.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.example.MinimumSpanningTreeExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/class-use/ShortestPathExample.html b/0.4.1-snapshot/com/jgalgo/example/class-use/ShortestPathExample.html
index fba83dcb4c..374a6bf5c0 100644
--- a/0.4.1-snapshot/com/jgalgo/example/class-use/ShortestPathExample.html
+++ b/0.4.1-snapshot/com/jgalgo/example/class-use/ShortestPathExample.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.example.ShortestPathExample (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/package-summary.html b/0.4.1-snapshot/com/jgalgo/example/package-summary.html
index 956a03b022..50498e0a36 100644
--- a/0.4.1-snapshot/com/jgalgo/example/package-summary.html
+++ b/0.4.1-snapshot/com/jgalgo/example/package-summary.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.example (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/package-tree.html b/0.4.1-snapshot/com/jgalgo/example/package-tree.html
index 550f50b2f6..8a3a080f38 100644
--- a/0.4.1-snapshot/com/jgalgo/example/package-tree.html
+++ b/0.4.1-snapshot/com/jgalgo/example/package-tree.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.example Class Hierarchy (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/example/package-use.html b/0.4.1-snapshot/com/jgalgo/example/package-use.html
index 1d2e0f910a..a26ced1469 100644
--- a/0.4.1-snapshot/com/jgalgo/example/package-use.html
+++ b/0.4.1-snapshot/com/jgalgo/example/package-use.html
@@ -2,10 +2,10 @@
-
+
Uses of Package com.jgalgo.example (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/BarabasiAlbertGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/BarabasiAlbertGraphGenerator.html
index d9ca426829..fb7598e1d9 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/BarabasiAlbertGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/BarabasiAlbertGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
BarabasiAlbertGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/ComplementGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/ComplementGraphGenerator.html
index 45f6dbc351..e670801a39 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/ComplementGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/ComplementGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
ComplementGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/CompleteBipartiteGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/CompleteBipartiteGraphGenerator.html
index eb865ab810..fd2815ba57 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/CompleteBipartiteGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/CompleteBipartiteGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
CompleteBipartiteGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/CompleteGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/CompleteGraphGenerator.html
index ad3e22c9f8..54daa6d1e6 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/CompleteGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/CompleteGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
CompleteGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/DifferenceGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/DifferenceGraphGenerator.html
index 3306f066eb..4d88936787 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/DifferenceGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/DifferenceGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
DifferenceGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/EmptyGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/EmptyGraphGenerator.html
index 8a7608ef69..f8b2481725 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/EmptyGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/EmptyGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
EmptyGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/GnmBipartiteGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/GnmBipartiteGraphGenerator.html
index 11863949e8..949af402ea 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/GnmBipartiteGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/GnmBipartiteGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
GnmBipartiteGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/GnmGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/GnmGraphGenerator.html
index 54b4664ba1..9936632fc8 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/GnmGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/GnmGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
GnmGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/GnpBipartiteGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/GnpBipartiteGraphGenerator.html
index 75a761f653..5c7707b63e 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/GnpBipartiteGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/GnpBipartiteGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
GnpBipartiteGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/GnpGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/GnpGraphGenerator.html
index faca16c19e..f70412c102 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/GnpGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/GnpGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
GnpGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/GraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/GraphGenerator.html
index 930a948be1..37143d3bf3 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/GraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/GraphGenerator.html
@@ -2,10 +2,10 @@
-
+
GraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/IntersectionGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/IntersectionGraphGenerator.html
index 64e914d7a9..30e2b78913 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/IntersectionGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/IntersectionGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
IntersectionGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/LineGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/LineGraphGenerator.html
index 3ca9c1f02b..345ae815cf 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/LineGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/LineGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
LineGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/RecursiveMatrixGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/RecursiveMatrixGraphGenerator.html
index 0940ab561b..dc2d35c09e 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/RecursiveMatrixGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/RecursiveMatrixGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
RecursiveMatrixGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/SymmetricDifferenceGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/SymmetricDifferenceGraphGenerator.html
index 6720eb6f25..9c6ee83c36 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/SymmetricDifferenceGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/SymmetricDifferenceGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
SymmetricDifferenceGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/UniformTreeGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/UniformTreeGenerator.html
index 00be141507..ebf1dbe09c 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/UniformTreeGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/UniformTreeGenerator.html
@@ -2,10 +2,10 @@
-
+
UniformTreeGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/UnionGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/UnionGraphGenerator.html
index c0c570ed2c..b91b5c54ae 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/UnionGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/UnionGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
UnionGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/BarabasiAlbertGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/BarabasiAlbertGraphGenerator.html
index 21059faca9..3e70c069ec 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/BarabasiAlbertGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/BarabasiAlbertGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.BarabasiAlbertGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/ComplementGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/ComplementGraphGenerator.html
index 2d365d1d56..4c155f2272 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/ComplementGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/ComplementGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.ComplementGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/CompleteBipartiteGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/CompleteBipartiteGraphGenerator.html
index fb10a9bf9c..d156ce08f6 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/CompleteBipartiteGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/CompleteBipartiteGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.CompleteBipartiteGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/CompleteGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/CompleteGraphGenerator.html
index cb5816ec5c..ad1969683a 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/CompleteGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/CompleteGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.CompleteGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/DifferenceGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/DifferenceGraphGenerator.html
index 60cdb20fa0..22a0341f78 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/DifferenceGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/DifferenceGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.DifferenceGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/EmptyGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/EmptyGraphGenerator.html
index b527aa43f0..5cebd9078a 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/EmptyGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/EmptyGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.EmptyGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/GnmBipartiteGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/GnmBipartiteGraphGenerator.html
index e05ff4ce0c..e0a34b74c6 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/GnmBipartiteGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/GnmBipartiteGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.GnmBipartiteGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/GnmGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/GnmGraphGenerator.html
index 185c782bc1..4eb5722030 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/GnmGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/GnmGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.GnmGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/GnpBipartiteGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/GnpBipartiteGraphGenerator.html
index 05d130b4a9..79a165e797 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/GnpBipartiteGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/GnpBipartiteGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.GnpBipartiteGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/GnpGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/GnpGraphGenerator.html
index fd7c92a074..55180237ac 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/GnpGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/GnpGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.GnpGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/GraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/GraphGenerator.html
index f0ac111244..1c313e540b 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/GraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/GraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.gen.GraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/IntersectionGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/IntersectionGraphGenerator.html
index a38f563b1e..2a8b1dfe27 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/IntersectionGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/IntersectionGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.IntersectionGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/LineGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/LineGraphGenerator.html
index 7af6e29191..b95a308f12 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/LineGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/LineGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.LineGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/RecursiveMatrixGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/RecursiveMatrixGraphGenerator.html
index 1ccb8ad7a5..0cb14ccdb4 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/RecursiveMatrixGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/RecursiveMatrixGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.RecursiveMatrixGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/SymmetricDifferenceGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/SymmetricDifferenceGraphGenerator.html
index 65bfc7eae9..142e405ef8 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/SymmetricDifferenceGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/SymmetricDifferenceGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.SymmetricDifferenceGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/UniformTreeGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/UniformTreeGenerator.html
index 4474d66e38..cfe13aa049 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/UniformTreeGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/UniformTreeGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.UniformTreeGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/class-use/UnionGraphGenerator.html b/0.4.1-snapshot/com/jgalgo/gen/class-use/UnionGraphGenerator.html
index beafd4ec0c..4dbe1039ce 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/class-use/UnionGraphGenerator.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/class-use/UnionGraphGenerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.gen.UnionGraphGenerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/package-summary.html b/0.4.1-snapshot/com/jgalgo/gen/package-summary.html
index 4766b4976d..3fe903851c 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/package-summary.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/package-summary.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.gen (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/package-tree.html b/0.4.1-snapshot/com/jgalgo/gen/package-tree.html
index 90165ad5e2..29f89e065a 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/package-tree.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/package-tree.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.gen Class Hierarchy (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/gen/package-use.html b/0.4.1-snapshot/com/jgalgo/gen/package-use.html
index 84b8de6b6b..c809ff1eef 100644
--- a/0.4.1-snapshot/com/jgalgo/gen/package-use.html
+++ b/0.4.1-snapshot/com/jgalgo/gen/package-use.html
@@ -2,10 +2,10 @@
-
+
Uses of Package com.jgalgo.gen (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/AbstractGraph.html b/0.4.1-snapshot/com/jgalgo/graph/AbstractGraph.html
index 605c68f880..70584fd7a9 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/AbstractGraph.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/AbstractGraph.html
@@ -2,10 +2,10 @@
-
+
AbstractGraph (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/EdgeIter.html b/0.4.1-snapshot/com/jgalgo/graph/EdgeIter.html
index b43edcc064..078b5dd7c1 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/EdgeIter.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/EdgeIter.html
@@ -2,10 +2,10 @@
-
+
EdgeIter (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/EdgeSet.html b/0.4.1-snapshot/com/jgalgo/graph/EdgeSet.html
index c9f825d492..88d2b90f30 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/EdgeSet.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/EdgeSet.html
@@ -2,10 +2,10 @@
-
+
EdgeSet (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/Graph.html b/0.4.1-snapshot/com/jgalgo/graph/Graph.html
index f55627e5a2..028e5af09b 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/Graph.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/Graph.html
@@ -2,10 +2,10 @@
-
+
Graph (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/GraphBuilder.html b/0.4.1-snapshot/com/jgalgo/graph/GraphBuilder.html
index 0be5312fcb..c4e1371db6 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/GraphBuilder.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/GraphBuilder.html
@@ -2,10 +2,10 @@
-
+
GraphBuilder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/GraphFactory.Hint.html b/0.4.1-snapshot/com/jgalgo/graph/GraphFactory.Hint.html
index 00b0f1612d..289f373590 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/GraphFactory.Hint.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/GraphFactory.Hint.html
@@ -2,10 +2,10 @@
-
+
GraphFactory.Hint (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/GraphFactory.html b/0.4.1-snapshot/com/jgalgo/graph/GraphFactory.html
index 03f00f1eab..4a8196ee2d 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/GraphFactory.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/GraphFactory.html
@@ -2,10 +2,10 @@
-
+
GraphFactory (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/Graphs.html b/0.4.1-snapshot/com/jgalgo/graph/Graphs.html
index c56e099121..9076af1b45 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/Graphs.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/Graphs.html
@@ -2,10 +2,10 @@
-
+
Graphs (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IEdgeIter.html b/0.4.1-snapshot/com/jgalgo/graph/IEdgeIter.html
index 9fc9c91cb5..e0b402169e 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IEdgeIter.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IEdgeIter.html
@@ -2,10 +2,10 @@
-
+
IEdgeIter (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IEdgeSet.html b/0.4.1-snapshot/com/jgalgo/graph/IEdgeSet.html
index 06b2c0f3e8..65e2c853f1 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IEdgeSet.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IEdgeSet.html
@@ -2,10 +2,10 @@
-
+
IEdgeSet (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeightFunction.html b/0.4.1-snapshot/com/jgalgo/graph/IWeightFunction.html
index fa1fc64520..e41c3b0696 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeightFunction.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeightFunction.html
@@ -2,10 +2,10 @@
-
+
IWeightFunction (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeightFunctionInt.html b/0.4.1-snapshot/com/jgalgo/graph/IWeightFunctionInt.html
index bb036aa549..273aa7bce0 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeightFunctionInt.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeightFunctionInt.html
@@ -2,10 +2,10 @@
-
+
IWeightFunctionInt (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeights.html b/0.4.1-snapshot/com/jgalgo/graph/IWeights.html
index 0f8c7caf22..494319e37d 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeights.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeights.html
@@ -2,10 +2,10 @@
-
+
IWeights (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeightsBool.html b/0.4.1-snapshot/com/jgalgo/graph/IWeightsBool.html
index b24ab86e90..4dbbcb5511 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeightsBool.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeightsBool.html
@@ -2,10 +2,10 @@
-
+
IWeightsBool (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeightsByte.html b/0.4.1-snapshot/com/jgalgo/graph/IWeightsByte.html
index b1ca7f5926..2b841d13fd 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeightsByte.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeightsByte.html
@@ -2,10 +2,10 @@
-
+
IWeightsByte (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeightsChar.html b/0.4.1-snapshot/com/jgalgo/graph/IWeightsChar.html
index 3441ff7d75..29501539c7 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeightsChar.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeightsChar.html
@@ -2,10 +2,10 @@
-
+
IWeightsChar (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeightsDouble.html b/0.4.1-snapshot/com/jgalgo/graph/IWeightsDouble.html
index 7c5eaaa601..439f5c70fb 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeightsDouble.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeightsDouble.html
@@ -2,10 +2,10 @@
-
+
IWeightsDouble (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeightsFloat.html b/0.4.1-snapshot/com/jgalgo/graph/IWeightsFloat.html
index 67a2c45600..69a8907c31 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeightsFloat.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeightsFloat.html
@@ -2,10 +2,10 @@
-
+
IWeightsFloat (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeightsInt.html b/0.4.1-snapshot/com/jgalgo/graph/IWeightsInt.html
index da405fb7ff..2f08e18716 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeightsInt.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeightsInt.html
@@ -2,10 +2,10 @@
-
+
IWeightsInt (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeightsLong.html b/0.4.1-snapshot/com/jgalgo/graph/IWeightsLong.html
index 4bc763a35f..8859148ea6 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeightsLong.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeightsLong.html
@@ -2,10 +2,10 @@
-
+
IWeightsLong (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeightsObj.html b/0.4.1-snapshot/com/jgalgo/graph/IWeightsObj.html
index 59d18899ba..6c4c39e294 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeightsObj.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeightsObj.html
@@ -2,10 +2,10 @@
-
+
IWeightsObj (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IWeightsShort.html b/0.4.1-snapshot/com/jgalgo/graph/IWeightsShort.html
index 0f2d837e7d..7b81747353 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IWeightsShort.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IWeightsShort.html
@@ -2,10 +2,10 @@
-
+
IWeightsShort (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IdBuilder.html b/0.4.1-snapshot/com/jgalgo/graph/IdBuilder.html
index 2052b112d1..489ccde04e 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IdBuilder.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IdBuilder.html
@@ -2,10 +2,10 @@
-
+
IdBuilder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IdBuilderInt.html b/0.4.1-snapshot/com/jgalgo/graph/IdBuilderInt.html
index 8f26690d38..5e1ade192d 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IdBuilderInt.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IdBuilderInt.html
@@ -2,10 +2,10 @@
-
+
IdBuilderInt (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IndexGraph.html b/0.4.1-snapshot/com/jgalgo/graph/IndexGraph.html
index d89c5528ed..e6ecf233e0 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IndexGraph.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IndexGraph.html
@@ -2,10 +2,10 @@
-
+
IndexGraph (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.ReIndexedGraph.html b/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.ReIndexedGraph.html
index cc761ead8b..870d87de97 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.ReIndexedGraph.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.ReIndexedGraph.html
@@ -2,10 +2,10 @@
-
+
IndexGraphBuilder.ReIndexedGraph (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.ReIndexingMap.html b/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.ReIndexingMap.html
index 94b29a8b2c..ba314cca86 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.ReIndexingMap.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.ReIndexingMap.html
@@ -2,10 +2,10 @@
-
+
IndexGraphBuilder.ReIndexingMap (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.html b/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.html
index 732a8194b0..43cd0eb0e3 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IndexGraphBuilder.html
@@ -2,10 +2,10 @@
-
+
IndexGraphBuilder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IndexGraphFactory.html b/0.4.1-snapshot/com/jgalgo/graph/IndexGraphFactory.html
index 948bd79b9c..7b418e6e84 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IndexGraphFactory.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IndexGraphFactory.html
@@ -2,10 +2,10 @@
-
+
IndexGraphFactory (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IndexIdMap.html b/0.4.1-snapshot/com/jgalgo/graph/IndexIdMap.html
index 4dcc6e0c5f..8932dc30ae 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IndexIdMap.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IndexIdMap.html
@@ -2,10 +2,10 @@
-
+
IndexIdMap (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IndexIdMaps.html b/0.4.1-snapshot/com/jgalgo/graph/IndexIdMaps.html
index 9aa61acc93..e56befec11 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IndexIdMaps.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IndexIdMaps.html
@@ -2,10 +2,10 @@
-
+
IndexIdMaps (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IndexIntIdMap.html b/0.4.1-snapshot/com/jgalgo/graph/IndexIntIdMap.html
index 8c8a6464e0..212f7d69fe 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IndexIntIdMap.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IndexIntIdMap.html
@@ -2,10 +2,10 @@
-
+
IndexIntIdMap (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IndexRemoveListener.html b/0.4.1-snapshot/com/jgalgo/graph/IndexRemoveListener.html
index 32e43250c0..8e985bf539 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IndexRemoveListener.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IndexRemoveListener.html
@@ -2,10 +2,10 @@
-
+
IndexRemoveListener (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IntGraph.html b/0.4.1-snapshot/com/jgalgo/graph/IntGraph.html
index d3d8004deb..13cce371f6 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IntGraph.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IntGraph.html
@@ -2,10 +2,10 @@
-
+
IntGraph (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IntGraphBuilder.html b/0.4.1-snapshot/com/jgalgo/graph/IntGraphBuilder.html
index dbda18914b..b92909adf4 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IntGraphBuilder.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IntGraphBuilder.html
@@ -2,10 +2,10 @@
-
+
IntGraphBuilder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/IntGraphFactory.html b/0.4.1-snapshot/com/jgalgo/graph/IntGraphFactory.html
index 9f07b988c5..a07bab18a9 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/IntGraphFactory.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/IntGraphFactory.html
@@ -2,10 +2,10 @@
-
+
IntGraphFactory (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/NoSuchEdgeException.html b/0.4.1-snapshot/com/jgalgo/graph/NoSuchEdgeException.html
index 7e34151166..8acaebada9 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/NoSuchEdgeException.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/NoSuchEdgeException.html
@@ -2,10 +2,10 @@
-
+
NoSuchEdgeException (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/NoSuchVertexException.html b/0.4.1-snapshot/com/jgalgo/graph/NoSuchVertexException.html
index 8dbe21848f..4652646b46 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/NoSuchVertexException.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/NoSuchVertexException.html
@@ -2,10 +2,10 @@
-
+
NoSuchVertexException (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightFunction.html b/0.4.1-snapshot/com/jgalgo/graph/WeightFunction.html
index f192432f61..cb0690d2b7 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightFunction.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightFunction.html
@@ -2,10 +2,10 @@
-
+
WeightFunction (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightFunctionInt.html b/0.4.1-snapshot/com/jgalgo/graph/WeightFunctionInt.html
index 4684c636bd..708c7f5819 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightFunctionInt.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightFunctionInt.html
@@ -2,10 +2,10 @@
-
+
WeightFunctionInt (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightFunctions.html b/0.4.1-snapshot/com/jgalgo/graph/WeightFunctions.html
index 5d7b2eefd2..bab1f98398 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightFunctions.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightFunctions.html
@@ -2,10 +2,10 @@
-
+
WeightFunctions (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/Weights.html b/0.4.1-snapshot/com/jgalgo/graph/Weights.html
index 1c9d853e18..3d7f98775e 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/Weights.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/Weights.html
@@ -2,10 +2,10 @@
-
+
Weights (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightsBool.html b/0.4.1-snapshot/com/jgalgo/graph/WeightsBool.html
index 277851fd48..0d3207b7d4 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightsBool.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightsBool.html
@@ -2,10 +2,10 @@
-
+
WeightsBool (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightsByte.html b/0.4.1-snapshot/com/jgalgo/graph/WeightsByte.html
index 4d7e53241a..544c4aff55 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightsByte.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightsByte.html
@@ -2,10 +2,10 @@
-
+
WeightsByte (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightsChar.html b/0.4.1-snapshot/com/jgalgo/graph/WeightsChar.html
index f7e823099e..86a34c3805 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightsChar.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightsChar.html
@@ -2,10 +2,10 @@
-
+
WeightsChar (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightsDouble.html b/0.4.1-snapshot/com/jgalgo/graph/WeightsDouble.html
index fb58046e66..ea84d0059b 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightsDouble.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightsDouble.html
@@ -2,10 +2,10 @@
-
+
WeightsDouble (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightsFloat.html b/0.4.1-snapshot/com/jgalgo/graph/WeightsFloat.html
index 302aa39d7a..e8131ee111 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightsFloat.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightsFloat.html
@@ -2,10 +2,10 @@
-
+
WeightsFloat (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightsInt.html b/0.4.1-snapshot/com/jgalgo/graph/WeightsInt.html
index 325e9152f3..fa200fe2f7 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightsInt.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightsInt.html
@@ -2,10 +2,10 @@
-
+
WeightsInt (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightsLong.html b/0.4.1-snapshot/com/jgalgo/graph/WeightsLong.html
index 3583064722..b510783b3d 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightsLong.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightsLong.html
@@ -2,10 +2,10 @@
-
+
WeightsLong (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightsObj.html b/0.4.1-snapshot/com/jgalgo/graph/WeightsObj.html
index 499524e381..79383548fc 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightsObj.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightsObj.html
@@ -2,10 +2,10 @@
-
+
WeightsObj (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/WeightsShort.html b/0.4.1-snapshot/com/jgalgo/graph/WeightsShort.html
index 282410c3a8..c7b5aeba7e 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/WeightsShort.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/WeightsShort.html
@@ -2,10 +2,10 @@
-
+
WeightsShort (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/class-use/AbstractGraph.html b/0.4.1-snapshot/com/jgalgo/graph/class-use/AbstractGraph.html
index cc4417bfa0..4d096920d3 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/class-use/AbstractGraph.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/class-use/AbstractGraph.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.graph.AbstractGraph (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/class-use/EdgeIter.html b/0.4.1-snapshot/com/jgalgo/graph/class-use/EdgeIter.html
index 8832518575..dfbd2bdf80 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/class-use/EdgeIter.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/class-use/EdgeIter.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.graph.EdgeIter (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/class-use/EdgeSet.html b/0.4.1-snapshot/com/jgalgo/graph/class-use/EdgeSet.html
index 5ed08e1ae5..116aa243f7 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/class-use/EdgeSet.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/class-use/EdgeSet.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.graph.EdgeSet (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/graph/class-use/Graph.html b/0.4.1-snapshot/com/jgalgo/graph/class-use/Graph.html
index 1b2ca9f9de..bcb1d04799 100644
--- a/0.4.1-snapshot/com/jgalgo/graph/class-use/Graph.html
+++ b/0.4.1-snapshot/com/jgalgo/graph/class-use/Graph.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.graph.Graph (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
@@ -1424,6 +1424,15 @@ Uses of Graph<
Verify that the given edges actually form an MST of a graph.
static <V,E>
Iterator<V>
verticesIter(Graph<V,E> g,
+ V source,
+ List<E> edges)
static IntIterator
verticesIter(IntGraph g,
+ int source,
+ IntList edges)
fromEdgeIndex
, inclusive,
+ and toEdgeIndex
, exclusive.