Skip to content

Commit 6da01ef

Browse files
committed
API documentation update by build server
1 parent 0a0a1e9 commit 6da01ef

File tree

4 files changed

+1
-39
lines changed

4 files changed

+1
-39
lines changed

docs/api/Advanced.Algorithms.Graph.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,6 @@ <h4><a class="xref" href="Advanced.Algorithms.Graph.FloydWarshallShortestPath-2.
130130
<h4><a class="xref" href="Advanced.Algorithms.Graph.FordFulkersonMaxFlow-2.html">FordFulkersonMaxFlow&lt;T, W&gt;</a></h4>
131131
<section><p>A ford-fulkerson max flox implementation on weighted directed graph using
132132
adjacency list representation of graph and residual graph.</p>
133-
</section>
134-
<h4><a class="xref" href="Advanced.Algorithms.Graph.HopcroftKarpMatching-1.html">HopcroftKarpMatching&lt;T&gt;</a></h4>
135-
<section><p>Compute Max BiParitite Edges using Hopcroft Karp algorithm.</p>
136133
</section>
137134
<h4><a class="xref" href="Advanced.Algorithms.Graph.JohnsonsShortestPath-2.html">JohnsonsShortestPath&lt;T, W&gt;</a></h4>
138135
<section><p>A Johnson&apos;s shortest path algorithm implementation.</p>

docs/api/toc.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -397,9 +397,6 @@
397397
<li>
398398
<a href="Advanced.Algorithms.Graph.FordFulkersonMaxFlow-2.html" name="" title="FordFulkersonMaxFlow&lt;T, W&gt;">FordFulkersonMaxFlow&lt;T, W&gt;</a>
399399
</li>
400-
<li>
401-
<a href="Advanced.Algorithms.Graph.HopcroftKarpMatching-1.html" name="" title="HopcroftKarpMatching&lt;T&gt;">HopcroftKarpMatching&lt;T&gt;</a>
402-
</li>
403400
<li>
404401
<a href="Advanced.Algorithms.Graph.IAStarHeuristic-2.html" name="" title="IAStarHeuristic&lt;T, W&gt;">IAStarHeuristic&lt;T, W&gt;</a>
405402
</li>

docs/index.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -549,15 +549,10 @@
549549
"title": "Class FordFulkersonMaxFlow<T, W> | Advanced Algorithms",
550550
"keywords": "Class FordFulkersonMaxFlow<T, W> A ford-fulkerson max flox implementation on weighted directed graph using adjacency list representation of graph and residual graph. Inheritance Object FordFulkersonMaxFlow<T, W> Inherited Members Object.ToString() Object.Equals(Object) Object.Equals(Object, Object) Object.ReferenceEquals(Object, Object) Object.GetHashCode() Object.GetType() Object.MemberwiseClone() Namespace : Advanced.Algorithms.Graph Assembly : Advanced.Algorithms.dll Syntax public class FordFulkersonMaxFlow<T, W> where W : IComparable Type Parameters Name Description T W Constructors FordFulkersonMaxFlow(IFlowOperators<W>) Declaration public FordFulkersonMaxFlow(IFlowOperators<W> operator) Parameters Type Name Description IFlowOperators <W> operator Methods ComputeMaxFlow(IDiGraph<T>, T, T) Compute max flow by searching a path and then augmenting the residual graph until no more path exists in residual graph with possible flow. Declaration public W ComputeMaxFlow(IDiGraph<T> graph, T source, T sink) Parameters Type Name Description IDiGraph <T> graph T source T sink Returns Type Description W ComputeMaxFlowAndReturnFlowPath(IDiGraph<T>, T, T) Return all flow Paths. Declaration public List<List<T>> ComputeMaxFlowAndReturnFlowPath(IDiGraph<T> graph, T source, T sink) Parameters Type Name Description IDiGraph <T> graph T source T sink Returns Type Description List < List <T>>"
551551
},
552-
"api/Advanced.Algorithms.Graph.HopcroftKarpMatching-1.html": {
553-
"href": "api/Advanced.Algorithms.Graph.HopcroftKarpMatching-1.html",
554-
"title": "Class HopcroftKarpMatching<T> | Advanced Algorithms",
555-
"keywords": "Class HopcroftKarpMatching<T> Compute Max BiParitite Edges using Hopcroft Karp algorithm. Inheritance Object HopcroftKarpMatching<T> Inherited Members Object.ToString() Object.Equals(Object) Object.Equals(Object, Object) Object.ReferenceEquals(Object, Object) Object.GetHashCode() Object.GetType() Object.MemberwiseClone() Namespace : Advanced.Algorithms.Graph Assembly : Advanced.Algorithms.dll Syntax public class HopcroftKarpMatching<T> Type Parameters Name Description T Methods GetMaxBiPartiteMatching(IGraph<T>) Returns a list of Max BiPartite Match Edges. Declaration public List<MatchEdge<T>> GetMaxBiPartiteMatching(IGraph<T> graph) Parameters Type Name Description IGraph <T> graph Returns Type Description List < MatchEdge <T>>"
556-
},
557552
"api/Advanced.Algorithms.Graph.html": {
558553
"href": "api/Advanced.Algorithms.Graph.html",
559554
"title": "Namespace Advanced.Algorithms.Graph | Advanced Algorithms",
560-
"keywords": "Namespace Advanced.Algorithms.Graph Classes AllPairShortestPathResult<T, W> All pairs shortest path algorithm result object. AStarShortestPath<T, W> A* algorithm implementation using Fibonacci Heap. BellmanFordShortestPath<T, W> A Bellman Ford algorithm implementation. BiDirectional<T> A BiDirectional Path Search on DiGraph. BiPartiteMatching<T> Compute Max BiParitite Edges using Ford-Fukerson algorithm. BreadthFirst<T> Bread First Search implementation. Bridge<T> The bridge object. CycleDetector<T> Cycle detection using Depth First Search. DepthFirst<T> Depth First Search. DepthFirstTopSort<T> Find Toplogical order of a graph using Depth First Search. DijikstraShortestPath<T, W> A dijikstra algorithm implementation using Fibonacci Heap. EdmondKarpMaxFlow<T, W> An Edmond Karp max flow implementation on weighted directed graph using adjacency list representation of graph and residual graph. FloydWarshallShortestPath<T, W> A floyd-warshall shortest path algorithm implementation. FordFulkersonMaxFlow<T, W> A ford-fulkerson max flox implementation on weighted directed graph using adjacency list representation of graph and residual graph. HopcroftKarpMatching<T> Compute Max BiParitite Edges using Hopcroft Karp algorithm. JohnsonsShortestPath<T, W> A Johnson's shortest path algorithm implementation. KahnsTopSort<T> Find Toplogical order of a graph using Kahn's algorithm. KosarajuStronglyConnected<T> A Kosaraju Strong Connected Component Algorithm Implementation. Kruskals<T, W> A Kruskal's alogorithm implementation using merge sort and disjoint set. MatchEdge<T> The match result object. MColorer<T, C> An m-coloring algorithm implementation. MColorResult<T, C> M-coloring result object. MinCut<T, W> Compute minimum cut edges of given graph using Edmond-Karps improved Ford-Fulkerson Max Flow Algorithm. MinCutEdge<T> Minimum cut result object. MinVertexCover<T> A minimum vertex conver algorithm implementation. MSTEdge<T, W> Minimum spanning tree edge object. Prims<T, W> A Prims algorithm implementation. PushRelabelMaxFlow<T, W> A Push-Relabel algorithm implementation. ShortestPathResult<T, W> Shortest path result object. TarjansArticulationFinder<T> Articulation point finder using Tarjan's algorithm. TarjansBiConnected<T> Finds if a graph is BiConnected. TarjansBridgeFinder<T> Bridge finder using Tarjan's algorithm. TarjansStronglyConnected<T> Strongly connected using Tarjan's algorithm. TravellingSalesman<T, W> Uses dynamic programming for a psuedo-polynomial time runTime complexity for this NP hard problem. Interfaces IAStarHeuristic<T, W> Search heuristic used by A* search algorithm. IBiPartiteMatchOperators<T> Generic operator interface required by BiPartite matching algorithm. IFlowOperators<W> Operators to deal with generic Add, Substract etc on edge weights for flow algorithms such as ford-fulkerson algorithm. IJohnsonsShortestPathOperators<T, W> A concrete implementation of this interface is required by Johnson's algorithm. IShortestPathOperators<W> Generic operators interface required by shorted path algorithms."
555+
"keywords": "Namespace Advanced.Algorithms.Graph Classes AllPairShortestPathResult<T, W> All pairs shortest path algorithm result object. AStarShortestPath<T, W> A* algorithm implementation using Fibonacci Heap. BellmanFordShortestPath<T, W> A Bellman Ford algorithm implementation. BiDirectional<T> A BiDirectional Path Search on DiGraph. BiPartiteMatching<T> Compute Max BiParitite Edges using Ford-Fukerson algorithm. BreadthFirst<T> Bread First Search implementation. Bridge<T> The bridge object. CycleDetector<T> Cycle detection using Depth First Search. DepthFirst<T> Depth First Search. DepthFirstTopSort<T> Find Toplogical order of a graph using Depth First Search. DijikstraShortestPath<T, W> A dijikstra algorithm implementation using Fibonacci Heap. EdmondKarpMaxFlow<T, W> An Edmond Karp max flow implementation on weighted directed graph using adjacency list representation of graph and residual graph. FloydWarshallShortestPath<T, W> A floyd-warshall shortest path algorithm implementation. FordFulkersonMaxFlow<T, W> A ford-fulkerson max flox implementation on weighted directed graph using adjacency list representation of graph and residual graph. JohnsonsShortestPath<T, W> A Johnson's shortest path algorithm implementation. KahnsTopSort<T> Find Toplogical order of a graph using Kahn's algorithm. KosarajuStronglyConnected<T> A Kosaraju Strong Connected Component Algorithm Implementation. Kruskals<T, W> A Kruskal's alogorithm implementation using merge sort and disjoint set. MatchEdge<T> The match result object. MColorer<T, C> An m-coloring algorithm implementation. MColorResult<T, C> M-coloring result object. MinCut<T, W> Compute minimum cut edges of given graph using Edmond-Karps improved Ford-Fulkerson Max Flow Algorithm. MinCutEdge<T> Minimum cut result object. MinVertexCover<T> A minimum vertex conver algorithm implementation. MSTEdge<T, W> Minimum spanning tree edge object. Prims<T, W> A Prims algorithm implementation. PushRelabelMaxFlow<T, W> A Push-Relabel algorithm implementation. ShortestPathResult<T, W> Shortest path result object. TarjansArticulationFinder<T> Articulation point finder using Tarjan's algorithm. TarjansBiConnected<T> Finds if a graph is BiConnected. TarjansBridgeFinder<T> Bridge finder using Tarjan's algorithm. TarjansStronglyConnected<T> Strongly connected using Tarjan's algorithm. TravellingSalesman<T, W> Uses dynamic programming for a psuedo-polynomial time runTime complexity for this NP hard problem. Interfaces IAStarHeuristic<T, W> Search heuristic used by A* search algorithm. IBiPartiteMatchOperators<T> Generic operator interface required by BiPartite matching algorithm. IFlowOperators<W> Operators to deal with generic Add, Substract etc on edge weights for flow algorithms such as ford-fulkerson algorithm. IJohnsonsShortestPathOperators<T, W> A concrete implementation of this interface is required by Johnson's algorithm. IShortestPathOperators<W> Generic operators interface required by shorted path algorithms."
561556
},
562557
"api/Advanced.Algorithms.Graph.IAStarHeuristic-2.html": {
563558
"href": "api/Advanced.Algorithms.Graph.IAStarHeuristic-2.html",

docs/xrefmap.yml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -12167,33 +12167,6 @@ references:
1216712167
fullName.vb: Advanced.Algorithms.Graph.FordFulkersonMaxFlow(Of T, W).ComputeMaxFlowAndReturnFlowPath
1216812168
nameWithType: FordFulkersonMaxFlow<T, W>.ComputeMaxFlowAndReturnFlowPath
1216912169
nameWithType.vb: FordFulkersonMaxFlow(Of T, W).ComputeMaxFlowAndReturnFlowPath
12170-
- uid: Advanced.Algorithms.Graph.HopcroftKarpMatching`1
12171-
name: HopcroftKarpMatching<T>
12172-
href: api/Advanced.Algorithms.Graph.HopcroftKarpMatching-1.html
12173-
commentId: T:Advanced.Algorithms.Graph.HopcroftKarpMatching`1
12174-
name.vb: HopcroftKarpMatching(Of T)
12175-
fullName: Advanced.Algorithms.Graph.HopcroftKarpMatching<T>
12176-
fullName.vb: Advanced.Algorithms.Graph.HopcroftKarpMatching(Of T)
12177-
nameWithType: HopcroftKarpMatching<T>
12178-
nameWithType.vb: HopcroftKarpMatching(Of T)
12179-
- uid: Advanced.Algorithms.Graph.HopcroftKarpMatching`1.GetMaxBiPartiteMatching(Advanced.Algorithms.DataStructures.Graph.IGraph{`0})
12180-
name: GetMaxBiPartiteMatching(IGraph<T>)
12181-
href: api/Advanced.Algorithms.Graph.HopcroftKarpMatching-1.html#Advanced_Algorithms_Graph_HopcroftKarpMatching_1_GetMaxBiPartiteMatching_Advanced_Algorithms_DataStructures_Graph_IGraph__0__
12182-
commentId: M:Advanced.Algorithms.Graph.HopcroftKarpMatching`1.GetMaxBiPartiteMatching(Advanced.Algorithms.DataStructures.Graph.IGraph{`0})
12183-
name.vb: GetMaxBiPartiteMatching(IGraph(Of T))
12184-
fullName: Advanced.Algorithms.Graph.HopcroftKarpMatching<T>.GetMaxBiPartiteMatching(Advanced.Algorithms.DataStructures.Graph.IGraph<T>)
12185-
fullName.vb: Advanced.Algorithms.Graph.HopcroftKarpMatching(Of T).GetMaxBiPartiteMatching(Advanced.Algorithms.DataStructures.Graph.IGraph(Of T))
12186-
nameWithType: HopcroftKarpMatching<T>.GetMaxBiPartiteMatching(IGraph<T>)
12187-
nameWithType.vb: HopcroftKarpMatching(Of T).GetMaxBiPartiteMatching(IGraph(Of T))
12188-
- uid: Advanced.Algorithms.Graph.HopcroftKarpMatching`1.GetMaxBiPartiteMatching*
12189-
name: GetMaxBiPartiteMatching
12190-
href: api/Advanced.Algorithms.Graph.HopcroftKarpMatching-1.html#Advanced_Algorithms_Graph_HopcroftKarpMatching_1_GetMaxBiPartiteMatching_
12191-
commentId: Overload:Advanced.Algorithms.Graph.HopcroftKarpMatching`1.GetMaxBiPartiteMatching
12192-
isSpec: "True"
12193-
fullName: Advanced.Algorithms.Graph.HopcroftKarpMatching<T>.GetMaxBiPartiteMatching
12194-
fullName.vb: Advanced.Algorithms.Graph.HopcroftKarpMatching(Of T).GetMaxBiPartiteMatching
12195-
nameWithType: HopcroftKarpMatching<T>.GetMaxBiPartiteMatching
12196-
nameWithType.vb: HopcroftKarpMatching(Of T).GetMaxBiPartiteMatching
1219712170
- uid: Advanced.Algorithms.Graph.IAStarHeuristic`2
1219812171
name: IAStarHeuristic<T, W>
1219912172
href: api/Advanced.Algorithms.Graph.IAStarHeuristic-2.html

0 commit comments

Comments
 (0)