Skip to content

Commit 6451446

Browse files
author
buildbot121
committed
API documentation update by build server
1 parent 1da8c60 commit 6451446

7 files changed

+27
-13
lines changed

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph-1.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,9 @@ <h5 class="returns">Returns</h5>
494494

495495
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_RemoveEdge_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.RemoveEdge*"></a>
496496
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_RemoveEdge__0__0_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.RemoveEdge(`0,`0)">RemoveEdge(T, T)</h4>
497-
<div class="markdown level1 summary"></div>
497+
<div class="markdown level1 summary"><p>Remove an existing edge between source and destination.
498+
Time complexity: O(1).</p>
499+
</div>
498500
<div class="markdown level1 conceptual"></div>
499501
<h5 class="decalaration">Declaration</h5>
500502
<div class="codewrapper">

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyMatrix.DiGraph-1.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,9 @@ <h5 class="returns">Returns</h5>
408408

409409
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyMatrix_DiGraph_1_RemoveEdge_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyMatrix.DiGraph`1.RemoveEdge*"></a>
410410
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyMatrix_DiGraph_1_RemoveEdge__0__0_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyMatrix.DiGraph`1.RemoveEdge(`0,`0)">RemoveEdge(T, T)</h4>
411-
<div class="markdown level1 summary"></div>
411+
<div class="markdown level1 summary"><p>remove an existing edge between source and destination
412+
Time complexity: O(1).</p>
413+
</div>
412414
<div class="markdown level1 conceptual"></div>
413415
<h5 class="decalaration">Declaration</h5>
414416
<div class="codewrapper">

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyMatrix.Graph-1.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,9 @@ <h5 class="returns">Returns</h5>
366366

367367
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyMatrix_Graph_1_RemoveEdge_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyMatrix.Graph`1.RemoveEdge*"></a>
368368
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyMatrix_Graph_1_RemoveEdge__0__0_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyMatrix.Graph`1.RemoveEdge(`0,`0)">RemoveEdge(T, T)</h4>
369-
<div class="markdown level1 summary"></div>
369+
<div class="markdown level1 summary"><p>Remove an existing edge between source and destination.
370+
Time complexity: O(1).</p>
371+
</div>
370372
<div class="markdown level1 conceptual"></div>
371373
<h5 class="decalaration">Declaration</h5>
372374
<div class="codewrapper">

docs/api/Advanced.Algorithms.Graph.EdmondKarpMaxFlow-2.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@
8383

8484
<h1 id="Advanced_Algorithms_Graph_EdmondKarpMaxFlow_2" data-uid="Advanced.Algorithms.Graph.EdmondKarpMaxFlow`2" class="text-break">Class EdmondKarpMaxFlow&lt;T, W&gt;
8585
</h1>
86-
<div class="markdown level0 summary"></div>
86+
<div class="markdown level0 summary"><p>An Edmond Karp max flow implementation on weighted directed graph using
87+
adjacency list representation of graph and residual graph.</p>
88+
</div>
8789
<div class="markdown level0 conceptual"></div>
8890
<div class="inheritance">
8991
<h5>Inheritance</h5>

docs/api/Advanced.Algorithms.Graph.FordFulkersonMaxFlow-2.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@
8383

8484
<h1 id="Advanced_Algorithms_Graph_FordFulkersonMaxFlow_2" data-uid="Advanced.Algorithms.Graph.FordFulkersonMaxFlow`2" class="text-break">Class FordFulkersonMaxFlow&lt;T, W&gt;
8585
</h1>
86-
<div class="markdown level0 summary"></div>
86+
<div class="markdown level0 summary"><p>A ford-fulkerson max flox implementation on weighted directed graph using
87+
adjacency list representation of graph and residual graph.</p>
88+
</div>
8789
<div class="markdown level0 conceptual"></div>
8890
<div class="inheritance">
8991
<h5>Inheritance</h5>

docs/api/Advanced.Algorithms.Graph.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,16 @@ <h4><a class="xref" href="Advanced.Algorithms.Graph.DijikstraShortestPath-2.html
118118
<section><p>A dijikstra algorithm implementation using Fibornacci Heap.</p>
119119
</section>
120120
<h4><a class="xref" href="Advanced.Algorithms.Graph.EdmondKarpMaxFlow-2.html">EdmondKarpMaxFlow&lt;T, W&gt;</a></h4>
121-
<section></section>
121+
<section><p>An Edmond Karp max flow implementation on weighted directed graph using
122+
adjacency list representation of graph and residual graph.</p>
123+
</section>
122124
<h4><a class="xref" href="Advanced.Algorithms.Graph.FloydWarshallShortestPath-2.html">FloydWarshallShortestPath&lt;T, W&gt;</a></h4>
123125
<section><p>A floyd-warshall shortest path algorithm implementation.</p>
124126
</section>
125127
<h4><a class="xref" href="Advanced.Algorithms.Graph.FordFulkersonMaxFlow-2.html">FordFulkersonMaxFlow&lt;T, W&gt;</a></h4>
126-
<section></section>
128+
<section><p>A ford-fulkerson max flox implementation on weighted directed graph using
129+
adjacency list representation of graph and residual graph.</p>
130+
</section>
127131
<h4><a class="xref" href="Advanced.Algorithms.Graph.HopcroftKarpMatching-1.html">HopcroftKarpMatching&lt;T&gt;</a></h4>
128132
<section><p>Compute Max BiParitite Edges using Hopcroft Karp algorithm.</p>
129133
</section>

0 commit comments

Comments
 (0)