An algorithm for the chinese postman problem.
@@ -156,14 +160,14 @@
Interface ChinesePostman
Method Summary
-All Methods Static Methods Instance Methods Abstract Methods
+All Methods Static Methods Instance Methods Abstract Methods Default Methods
Modifier and Type
Method
Description
-<V,E>Path <V,E>
+default <V,E>Path <V,E>
computeShortestEdgeVisitorCircle (Graph <V,E> g,
WeightFunction <E> w)
@@ -171,6 +175,14 @@ Method Summary
+<V,E>Optional <Path <V,E>>
+computeShortestEdgeVisitorCircleIfExist (Graph <V,E> g,
+ WeightFunction <E> w)
+
+Compute the shortest circuit that visits all edges in the graph at least once, if it exist.
+
+
+
static ChinesePostman
newInstance ()
@@ -200,8 +212,8 @@ Method Detail
computeShortestEdgeVisitorCircle
-<V,E> Path <V,E> computeShortestEdgeVisitorCircle(Graph <V,E> g,
- WeightFunction <E> w)
+default <V,E> Path <V,E> computeShortestEdgeVisitorCircle(Graph <V,E> g,
+ WeightFunction <E> w)
Compute the shortest circuit that visits all edges in the graph at least once.
@@ -215,8 +227,37 @@
computeShortestEdgeVisitorCircle
g
- a graph
w
- an edge weight function
Returns:
-
a closed path that visits all edges in the graph, with minimum weight sum with respect to the given
- edge weight function
+
a closed path that visits all edges in the graph, with minimum weight sum with
+ respect to the given edge weight function
+
Throws:
+
IllegalArgumentException
- if no solution exists, that is if the graph is not strongly connected
+
+
+
+
+
+
+
+
+computeShortestEdgeVisitorCircleIfExist
+<V,E> Optional <Path <V,E>> computeShortestEdgeVisitorCircleIfExist(Graph <V,E> g,
+ WeightFunction <E> w)
+Compute the shortest circuit that visits all edges in the graph at least once, if it exist.
+
+
+ If g
is IntGraph
, the returned object is an optional of IPath
. If g
is
+ IntGraph
, prefer to pass IWeightFunction
for best performance.
+
+Type Parameters:
+V
- the vertices type
+E
- the edges type
+Parameters:
+g
- a graph
+w
- an edge weight function
+Returns:
+an optional of closed path that visits all edges in the graph, with minimum weight sum with respect
+ to the given edge weight function, or empty if no solution exists (the graph is not strongly
+ connected)
diff --git a/0.4.1-snapshot/com/jgalgo/alg/cycle/ChinesePostmanAbstract.html b/0.4.1-snapshot/com/jgalgo/alg/cycle/ChinesePostmanAbstract.html
new file mode 100644
index 0000000000..361da364b5
--- /dev/null
+++ b/0.4.1-snapshot/com/jgalgo/alg/cycle/ChinesePostmanAbstract.html
@@ -0,0 +1,362 @@
+
+
+
+
+
+
ChinesePostmanAbstract (JGAlgo - Parent 0.4.1-SNAPSHOT API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+computeShortestEdgeVisitorCircleIfExist
+public <V,E> Optional <Path <V,E>> computeShortestEdgeVisitorCircleIfExist(Graph <V,E> g,
+ WeightFunction <E> w)
+
+Compute the shortest circuit that visits all edges in the graph at least once, if it exist.
+
+
+ If g
is IntGraph
, the returned object is an optional of IPath
. If g
is
+ IntGraph
, prefer to pass IWeightFunction
for best performance.
+
+Specified by:
+computeShortestEdgeVisitorCircleIfExist
in interface ChinesePostman
+Type Parameters:
+V
- the vertices type
+E
- the edges type
+Parameters:
+g
- a graph
+w
- an edge weight function
+Returns:
+an optional of closed path that visits all edges in the graph, with minimum weight sum with respect
+ to the given edge weight function, or empty if no solution exists (the graph is not strongly
+ connected)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/cycle/ChinesePostmanImpl.html b/0.4.1-snapshot/com/jgalgo/alg/cycle/ChinesePostmanImpl.html
new file mode 100644
index 0000000000..1c2f4ff787
--- /dev/null
+++ b/0.4.1-snapshot/com/jgalgo/alg/cycle/ChinesePostmanImpl.html
@@ -0,0 +1,326 @@
+
+
+
+
+
+
ChinesePostmanImpl (JGAlgo - Parent 0.4.1-SNAPSHOT API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor
+Description
+
+
+ChinesePostmanImpl ()
+
+Create a new instance of the Chinese postman algorithm.
+
+
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/cycle/CyclesEnumerator.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/cycle/CyclesEnumerator.Builder.html
index 81b3965e09..7d774e8e9f 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/cycle/CyclesEnumerator.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/cycle/CyclesEnumerator.Builder.html
@@ -2,10 +2,10 @@
-
+
CyclesEnumerator.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/cycle/CyclesEnumerator.html b/0.4.1-snapshot/com/jgalgo/alg/cycle/CyclesEnumerator.html
index 4105860590..adc9a96519 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/cycle/CyclesEnumerator.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/cycle/CyclesEnumerator.html
@@ -2,10 +2,10 @@
-
+
CyclesEnumerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
@@ -28,8 +28,8 @@
catch(err) {
}
//-->
-var data = {"i0":18,"i1":1,"i2":6,"i3":1};
-var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
+var data = {"i0":1,"i1":6,"i2":1};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@@ -125,6 +125,10 @@
Interface CyclesEnumerator<
<V,E>Path <V,E>
+MinimumMeanCycleAbstract. computeMinimumMeanCycle (Graph <V,E> g,
+ WeightFunction <E> w)
+
+
+
+default <V,E>Path <V,E>
ChinesePostman. computeShortestEdgeVisitorCircle (Graph <V,E> g,
WeightFunction <E> w)
@@ -179,19 +185,31 @@ Uses of Path
-default <V,E>List <Path <V,E>>
-CyclesEnumerator. allCycles (Graph <V,E> g)
+<V,E>Optional <Path <V,E>>
+ChinesePostman. computeShortestEdgeVisitorCircleIfExist (Graph <V,E> g,
+ WeightFunction <E> w)
-Find all cycles in the given graph.
+Compute the shortest circuit that visits all edges in the graph at least once, if it exist.
+<V,E>Optional <Path <V,E>>
+ChinesePostmanAbstract. computeShortestEdgeVisitorCircleIfExist (Graph <V,E> g,
+ WeightFunction <E> w)
+
+
+
<V,E>Iterator <Path <V,E>>
CyclesEnumerator. cyclesIter (Graph <V,E> g)
Iterate over all cycles in the given graph.
+
+<V,E>Iterator <Path <V,E>>
+CyclesEnumeratorAbstract. cyclesIter (Graph <V,E> g)
+
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.Builder.html
index 04f1c1aa24..3df9406867 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathAllPairs.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.IResult.html
index a11e129fd9..4de974b969 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathAllPairs.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.Result.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.Result.html
index a44e6cebb7..9cdbc60c7a 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathAllPairs.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.html
index 27134915d7..934ecba4e6 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathAllPairs.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathAllPairs (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathHeuristicST.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathHeuristicST.Builder.html
index c04c0b3706..dc82eeb112 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathHeuristicST.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathHeuristicST.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathHeuristicST.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathHeuristicST.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathHeuristicST.html
index 95e8dd6dff..45a28381c0 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathHeuristicST.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathHeuristicST.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathHeuristicST (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathST.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathST.Builder.html
index 86790fe5f4..4b2319eef5 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathST.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathST.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathST.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathST.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathST.html
index 90b7b10629..077030c052 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathST.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathST.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathST (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.Builder.html
index 6863f6a44b..7b11b772ca 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathSingleSource.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.IResult.html
index 10e803c2bc..77393f71cf 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathSingleSource.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.Result.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.Result.html
index 7036084837..c2642ba6bb 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathSingleSource.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.html
index 81655b781c..a29e027ff5 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/ShortestPathSingleSource.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.ShortestPathSingleSource (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/SimplePathsEnumerator.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/SimplePathsEnumerator.html
index 0d2b7570a7..2a80a341bd 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/SimplePathsEnumerator.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/SimplePathsEnumerator.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.SimplePathsEnumerator (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetric.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetric.html
index 894f82bbbb..56fb87bf3d 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetric.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetric.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.TspMetric (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetricMSTAppx.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetricMSTAppx.html
index de1154bf84..c3d4f64395 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetricMSTAppx.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetricMSTAppx.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.alg.path.TspMetricMSTAppx (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetricMatchingAppx.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetricMatchingAppx.html
index a74dc1b2f3..f20de08ec6 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetricMatchingAppx.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/TspMetricMatchingAppx.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.alg.path.TspMetricMatchingAppx (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.IResult.html
index 42441857bd..c324865b15 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.VoronoiAlgo.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.Result.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.Result.html
index b7eda9771a..e6dc37ff13 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.VoronoiAlgo.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.html b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.html
index ff4cd6eb8a..14d15e12e1 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/class-use/VoronoiAlgo.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.path.VoronoiAlgo (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/package-summary.html b/0.4.1-snapshot/com/jgalgo/alg/path/package-summary.html
index 0c4dbf68e0..584bdbfa7f 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/package-summary.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/package-summary.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.alg.path (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/package-tree.html b/0.4.1-snapshot/com/jgalgo/alg/path/package-tree.html
index bb1fa45082..9edbc2bbe6 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/package-tree.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/package-tree.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.alg.path Class Hierarchy (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/path/package-use.html b/0.4.1-snapshot/com/jgalgo/alg/path/package-use.html
index 521d6baf87..d1881d4e01 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/path/package-use.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/path/package-use.html
@@ -2,10 +2,10 @@
-
+
Uses of Package com.jgalgo.alg.path (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/MinimumDirectedSpanningTree.html b/0.4.1-snapshot/com/jgalgo/alg/span/MinimumDirectedSpanningTree.html
index 800d29f24c..91e4df571b 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/MinimumDirectedSpanningTree.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/MinimumDirectedSpanningTree.html
@@ -2,10 +2,10 @@
-
+
MinimumDirectedSpanningTree (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.Builder.html
index f460eb1ffa..0b2e568b3d 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.Builder.html
@@ -2,10 +2,10 @@
-
+
MinimumSpanningTree.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.IResult.html
index ff5084a80d..edd8e52351 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.IResult.html
@@ -2,10 +2,10 @@
-
+
MinimumSpanningTree.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.Result.html b/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.Result.html
index 78b8d80b9e..f12f42a93e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.Result.html
@@ -2,10 +2,10 @@
-
+
MinimumSpanningTree.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.html b/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.html
index 3a5d83469f..bb0684d264 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/MinimumSpanningTree.html
@@ -2,10 +2,10 @@
-
+
MinimumSpanningTree (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.IResult.html
index 3283662ef3..036f2666d2 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.IResult.html
@@ -2,10 +2,10 @@
-
+
SteinerTreeAlgo.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.Result.html b/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.Result.html
index a22f3d8f0f..9d910aa599 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.Result.html
@@ -2,10 +2,10 @@
-
+
SteinerTreeAlgo.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.html b/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.html
index 37bb4b1294..32af32f75e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/SteinerTreeAlgo.html
@@ -2,10 +2,10 @@
-
+
SteinerTreeAlgo (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumDirectedSpanningTree.html b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumDirectedSpanningTree.html
index 22baa90168..ee2d8bb4a3 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumDirectedSpanningTree.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumDirectedSpanningTree.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.span.MinimumDirectedSpanningTree (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.Builder.html
index 2b052166a6..b403f50052 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.span.MinimumSpanningTree.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.IResult.html
index fc430bd075..da6edaa4e4 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.span.MinimumSpanningTree.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.Result.html b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.Result.html
index 5ee335b37d..34d955ad94 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.span.MinimumSpanningTree.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.html b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.html
index ce7694b7a0..45949ee262 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/MinimumSpanningTree.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.span.MinimumSpanningTree (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.IResult.html
index b24e685dfe..420373885e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.span.SteinerTreeAlgo.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.Result.html b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.Result.html
index f3cd857f0d..1a82cd679e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.span.SteinerTreeAlgo.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.html b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.html
index 03833d9165..ea7925240f 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/class-use/SteinerTreeAlgo.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.span.SteinerTreeAlgo (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/package-summary.html b/0.4.1-snapshot/com/jgalgo/alg/span/package-summary.html
index c24eb51ead..662be39993 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/package-summary.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/package-summary.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.alg.span (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/package-tree.html b/0.4.1-snapshot/com/jgalgo/alg/span/package-tree.html
index d173481ee1..d0d8602fb9 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/package-tree.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/package-tree.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.alg.span Class Hierarchy (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/span/package-use.html b/0.4.1-snapshot/com/jgalgo/alg/span/package-use.html
index ec1e22ab85..8178975496 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/span/package-use.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/span/package-use.html
@@ -2,10 +2,10 @@
-
+
Uses of Package com.jgalgo.alg.span (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/BfsIter.Int.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/BfsIter.Int.html
index 5ed09ee099..516064a242 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/BfsIter.Int.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/BfsIter.Int.html
@@ -2,10 +2,10 @@
-
+
BfsIter.Int (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/BfsIter.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/BfsIter.html
index edc28395d6..98d166024c 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/BfsIter.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/BfsIter.html
@@ -2,10 +2,10 @@
-
+
BfsIter (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/DfsIter.Int.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/DfsIter.Int.html
index 0e5d95c238..767f4da678 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/DfsIter.Int.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/DfsIter.Int.html
@@ -2,10 +2,10 @@
-
+
DfsIter.Int (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/DfsIter.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/DfsIter.html
index 49bcdff993..153f277773 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/DfsIter.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/DfsIter.html
@@ -2,10 +2,10 @@
-
+
DfsIter (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/RandomWalkIter.Int.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/RandomWalkIter.Int.html
index 8626e5c341..2fe4b4e05d 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/RandomWalkIter.Int.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/RandomWalkIter.Int.html
@@ -2,10 +2,10 @@
-
+
RandomWalkIter.Int (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/RandomWalkIter.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/RandomWalkIter.html
index cc767e09e0..d11201f5b4 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/RandomWalkIter.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/RandomWalkIter.html
@@ -2,10 +2,10 @@
-
+
RandomWalkIter (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/BfsIter.Int.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/BfsIter.Int.html
index 6955490346..b6056bf300 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/BfsIter.Int.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/BfsIter.Int.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.traversal.BfsIter.Int (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/BfsIter.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/BfsIter.html
index 5241175f5a..aa4737e62e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/BfsIter.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/BfsIter.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.traversal.BfsIter (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/DfsIter.Int.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/DfsIter.Int.html
index 2827944af5..6b38bfd394 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/DfsIter.Int.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/DfsIter.Int.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.traversal.DfsIter.Int (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/DfsIter.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/DfsIter.html
index 677262e1da..c16a77e816 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/DfsIter.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/DfsIter.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.traversal.DfsIter (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/RandomWalkIter.Int.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/RandomWalkIter.Int.html
index 4f71cd5385..44600678e7 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/RandomWalkIter.Int.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/RandomWalkIter.Int.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.traversal.RandomWalkIter.Int (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/RandomWalkIter.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/RandomWalkIter.html
index 689bd1d974..5ee3e1561e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/RandomWalkIter.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/class-use/RandomWalkIter.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.traversal.RandomWalkIter (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/package-summary.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/package-summary.html
index bd59691f29..6ca5fa1529 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/package-summary.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/package-summary.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.alg.traversal (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/package-tree.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/package-tree.html
index 3f79174b2e..780c35b4f5 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/package-tree.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/package-tree.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.alg.traversal Class Hierarchy (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/traversal/package-use.html b/0.4.1-snapshot/com/jgalgo/alg/traversal/package-use.html
index 52ac0e89e8..4226f08512 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/traversal/package-use.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/traversal/package-use.html
@@ -2,10 +2,10 @@
-
+
Uses of Package com.jgalgo.alg.traversal (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.Builder.html
index d3c0fd39e2..818b9be127 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.Builder.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorDynamic.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.Vertex.html b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.Vertex.html
index 1b7a67b48b..9e731d0ea2 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.Vertex.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.Vertex.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorDynamic.Vertex (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.html b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.html
index 188b16974b..05e2c06225 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorDynamic.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorDynamic (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.IQueries.html b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.IQueries.html
index 4cee857f16..41ee9833f7 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.IQueries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.IQueries.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorOffline.IQueries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.IResult.html
index 371f267f89..2ac1668479 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.IResult.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorOffline.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.Queries.html b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.Queries.html
index 59a980c1cb..984b04efb7 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.Queries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.Queries.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorOffline.Queries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.Result.html b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.Result.html
index cd76c31247..77c49c85d4 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.Result.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorOffline.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.html b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.html
index ebbe419395..c0d689d52d 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorOffline.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorOffline (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.DataStructure.html b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.DataStructure.html
index 955796ddb3..ffc460d550 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.DataStructure.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.DataStructure.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorStatic.DataStructure (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.IDataStructure.html b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.IDataStructure.html
index aad606e9cc..f9ad306c88 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.IDataStructure.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.IDataStructure.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorStatic.IDataStructure (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.html b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.html
index 0805e0d765..dd6bd575c5 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/LowestCommonAncestorStatic.html
@@ -2,10 +2,10 @@
-
+
LowestCommonAncestorStatic (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Builder.html
index c82cd25834..d8a5a8fc07 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Builder.html
@@ -2,10 +2,10 @@
-
+
TreePathMaxima.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.IQueries.html b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.IQueries.html
index b08710a8b5..cff064e10a 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.IQueries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.IQueries.html
@@ -2,10 +2,10 @@
-
+
TreePathMaxima.IQueries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.IResult.html
index 39cfc3edc9..0773cdbdcf 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.IResult.html
@@ -2,10 +2,10 @@
-
+
TreePathMaxima.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Queries.html b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Queries.html
index 9f2f13bcdf..fcf9d15670 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Queries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Queries.html
@@ -2,10 +2,10 @@
-
+
TreePathMaxima.Queries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Result.html b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Result.html
index 7f4642e0ac..7c83af4c16 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.Result.html
@@ -2,10 +2,10 @@
-
+
TreePathMaxima.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.html b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.html
index e55e1b8a07..6e8ff8dd64 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/TreePathMaxima.html
@@ -2,10 +2,10 @@
-
+
TreePathMaxima (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/Trees.html b/0.4.1-snapshot/com/jgalgo/alg/tree/Trees.html
index 81386a3d7f..d2c8daa568 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/Trees.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/Trees.html
@@ -2,10 +2,10 @@
-
+
Trees (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.Builder.html
index c31a9c4264..a986e1a7d6 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.LowestCommonAncestorDynamic.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.Vertex.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.Vertex.html
index cb63adae74..14398c8ec6 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.Vertex.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.Vertex.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.LowestCommonAncestorDynamic.Vertex (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.html
index 8276d37e47..55f8a04567 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorDynamic.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.LowestCommonAncestorDynamic (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.IQueries.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.IQueries.html
index a7bf1739bd..77801176d8 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.IQueries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.IQueries.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.LowestCommonAncestorOffline.IQueries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.IResult.html
index 2e279c86ea..32fbb4aa5c 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.LowestCommonAncestorOffline.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.Queries.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.Queries.html
index 69d80f17f8..c5b31bc00b 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.Queries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.Queries.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.LowestCommonAncestorOffline.Queries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.Result.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.Result.html
index ea11407687..6f7cc0a3f9 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.LowestCommonAncestorOffline.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.html
index deaca4ffec..e09832a059 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorOffline.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.LowestCommonAncestorOffline (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.DataStructure.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.DataStructure.html
index 3ed813380a..8aa5659438 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.DataStructure.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.DataStructure.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.LowestCommonAncestorStatic.DataStructure (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.IDataStructure.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.IDataStructure.html
index d7140f25bf..53ece882d9 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.IDataStructure.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.IDataStructure.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.LowestCommonAncestorStatic.IDataStructure (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.html
index 80ccfd7859..e57ed8a684 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/LowestCommonAncestorStatic.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.LowestCommonAncestorStatic (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Builder.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Builder.html
index 97814a0438..d435801886 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Builder.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Builder.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.TreePathMaxima.Builder (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.IQueries.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.IQueries.html
index 2bc38873c5..ebfa6e303b 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.IQueries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.IQueries.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.TreePathMaxima.IQueries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.IResult.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.IResult.html
index 5e1e49d262..501e43b2cd 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.IResult.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.IResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.TreePathMaxima.IResult (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Queries.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Queries.html
index c5343b8f28..1d1efdbd8e 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Queries.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Queries.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.TreePathMaxima.Queries (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Result.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Result.html
index 7c5216308a..cea7979f29 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Result.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.Result.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.TreePathMaxima.Result (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.html
index 70c7096d36..17f6253034 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/TreePathMaxima.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface com.jgalgo.alg.tree.TreePathMaxima (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/Trees.html b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/Trees.html
index 8f2fa4b685..6e1a52b444 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/Trees.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/class-use/Trees.html
@@ -2,10 +2,10 @@
-
+
Uses of Class com.jgalgo.alg.tree.Trees (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/package-summary.html b/0.4.1-snapshot/com/jgalgo/alg/tree/package-summary.html
index 55bf86c4eb..ed6b2aaaa3 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/package-summary.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/package-summary.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.alg.tree (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/package-tree.html b/0.4.1-snapshot/com/jgalgo/alg/tree/package-tree.html
index c037961129..6d44255505 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/package-tree.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/package-tree.html
@@ -2,10 +2,10 @@
-
+
com.jgalgo.alg.tree Class Hierarchy (JGAlgo - Parent 0.4.1-SNAPSHOT API)
-
+
diff --git a/0.4.1-snapshot/com/jgalgo/alg/tree/package-use.html b/0.4.1-snapshot/com/jgalgo/alg/tree/package-use.html
index 28dc1ea8ce..bbee9fea68 100644
--- a/0.4.1-snapshot/com/jgalgo/alg/tree/package-use.html
+++ b/0.4.1-snapshot/com/jgalgo/alg/tree/package-use.html
@@ -2,10 +2,10 @@
-
+
Uses of Package com.jgalgo.alg.tree (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 341dd97962..547ebbccd0 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 39a7172d92..ef3bd2ed85 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 2240c9fab0..879a4fffdb 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 78d45023a5..8c86caa44f 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 93f3953704..715f7d52d9 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 1def1cc673..ad54b81ed9 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 a66e416edf..fd3387a524 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 f03be71565..de9093c8e2 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 1767c10fd7..a6cce883f6 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 8f3cfd1915..2f7f1beda0 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 f6f3e1a1d1..d4a376319d 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 a623cf44a7..eb92afeb61 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 299e8d16f8..be67ce315b 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 41bf2075a3..fc91aeeb90 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 9a04bd6f9b..9ef47c2a56 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 9ea7f2d528..d6bdd3f6ed 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 39ba4482d4..bf912be372 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 f621933587..b9cbe9e78a 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 7af9deb671..0a851f3b6d 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 554089c366..2a7168e8a3 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 e7102b6140..54d8d427d9 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 3afa67e510..dafd954c37 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 9cf93eb325..2e96332be1 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 3e79aac5bf..9bf4420e94 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 3b39ba2ff7..677c5929d6 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 47a5687c03..c04cbbaae5 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 b4ff9b6477..121425d34e 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 ad57b4b788..ed4c78e672 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 9ac8306037..544001fdef 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 709edff546..68cb783f37 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 aec6fb8185..e4e63ef116 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 2c0c450f8a..eaf1bcd338 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 75c2ba28fb..0dbfc8d601 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 03245b3cfe..8c0662cf4d 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 65737aa58c..e00871a1e9 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 1ac3d4e725..66503c7675 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 1afd981043..e71c7c8390 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 2f82d8bbba..8cfcb11bd6 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 b7e0f80eed..e294369ef6 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 21029ec025..68622ba90d 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 c5c9472513..56c6685c79 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 3bcb7de738..dce7b68ce6 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 2f4d73a372..b4559f2358 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 2dfcd0277b..a7a58a1f19 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 0a86db630b..9521a07663 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 7ae8b92de9..c2fbeb741f 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 13fc431665..89439c71bc 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 818a34e2b4..7311472eb5 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 16aa16bab7..c67b510eff 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 883b272703..53b0f1fa3b 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 94b80b2672..e263d61283 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 82c5a9afee..b1cb50be14 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 135650e6a8..c806cb7c39 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 3ee7ea92f1..66b14a2991 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 71e5e5ce2e..5f765de8a0 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 cfa1b09602..1a5086e54a 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 d46a48bb26..de13df55e0 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 c0340f8efa..7482bf83c6 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 d067ada4b3..3a77cf921e 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 dcbcff2a74..bca6216469 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 bbf9a8f74e..aafce0f389 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 1f5a696cdd..e5a31578b8 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 101eb960e5..fdf7d36149 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 26d0c4ab80..d928fa9cb6 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 4bd93cc5c0..70300a6bad 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 5bcf3a3a32..e289da50d5 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 d62aa51818..922a31c524 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 1058d57af9..a7f5a45ccf 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 8371d92d39..725131eea2 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 c432108eeb..385a415cbb 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 68b811b100..b41c845a5b 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 7b544ec4b5..3f309dc831 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 41d2edc358..a038565a9d 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 eacff40a97..e05459287e 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 4054d8e1ea..907904e61b 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 f2cc3e15d5..522a58f29e 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 5102e3b9aa..f24571a63f 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 7a484575c9..d0c025bb74 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 960997b87e..4e5f398cd5 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 6767d1ec49..bca89cb701 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 72d3128dd0..9bbe767eb4 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 330c991de9..c0b0dd5643 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 4b42bc1aff..be1fd07a46 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 249d65aed7..cdd6b458e8 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 fa4a82a2c1..7d6a9686c8 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 da24f91770..cbdb603e1f 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 e1c53dad0c..e0b4c5f765 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 fcf4d99459..9fb232c2ff 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 d1e11a98a3..a4723ae6db 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 f01e951349..cfb1bb7f6c 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 96bd60d865..b8795296fd 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 c29de5b8b0..40f742b7e1 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 069efc8227..09de32c26f 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 529be577b2..ae7b010a15 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 c8211ef07a..9eb80990b6 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 02d272fc5e..0082e8afc7 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 4751b9bb1f..84ad0ab778 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 66f300a5e9..ee562c4a9c 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 1000026e6c..73270f87fa 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 ef696c3bc0..d46fcb5036 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 4cbedd5b67..2a7de53aed 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 247fedc370..d452ae8e67 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 96755e3b4b..49f299fce5 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 fa7999070b..155893ee41 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 f23e49bd0f..bb4090b614 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 14c7bc0312..6a33b5d8ae 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 455b4f3029..5407079384 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 b5207d80ff..6cfb65ae59 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 e0f17f3abd..a74d713e99 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 7d0d74d42f..c427fada8d 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)
-
+
@@ -993,6 +993,12 @@
Uses of Graph<
Compute the cores of the graph with respect the given degree type.