# HG changeset patch # User alpar # Date 1169735781 0 # Node ID 5e273e0bd5e24f29e9e88971322d4835ecdb50b1 # Parent 8e3a00d4678e0ba93a6398d9b61d1c97d75db2f1 Doc improvements diff -r 8e3a00d4678e -r 5e273e0bd5e2 lemon/bipartite_matching.h --- a/lemon/bipartite_matching.h Tue Jan 23 13:13:39 2007 +0000 +++ b/lemon/bipartite_matching.h Thu Jan 25 14:36:21 2007 +0000 @@ -164,7 +164,7 @@ /// \brief An augmenting phase of the Hopcroft-Karp algorithm /// /// It runs an augmenting phase of the Hopcroft-Karp - /// algorithm. The phase finds maximum count of edge disjoint + /// algorithm. This phase finds maximum count of edge disjoint /// augmenting paths and augments on these paths. The algorithm /// consists at most of \f$ O(\sqrt{n}) \f$ phase and one phase is /// \f$ O(e) \f$ long. @@ -258,7 +258,7 @@ /// \brief An augmenting phase of the Ford-Fulkerson algorithm /// /// It runs an augmenting phase of the Ford-Fulkerson - /// algorithm. The phase finds only one augmenting path and + /// algorithm. This phase finds only one augmenting path and /// augments only on this paths. The algorithm consists at most /// of \f$ O(n) \f$ simple phase and one phase is at most /// \f$ O(e) \f$ long. @@ -734,7 +734,7 @@ /// \brief An augmenting phase of the weighted matching algorithm /// /// It runs an augmenting phase of the weighted matching - /// algorithm. The phase finds the best augmenting path and + /// algorithm. This phase finds the best augmenting path and /// augments only on this paths. /// /// The algorithm consists at most diff -r 8e3a00d4678e -r 5e273e0bd5e2 lemon/elevator.h --- a/lemon/elevator.h Tue Jan 23 13:13:39 2007 +0000 +++ b/lemon/elevator.h Thu Jan 25 14:36:21 2007 +0000 @@ -35,7 +35,7 @@ ///A class for handling "labels" in push-relabel type algorithms. /// ///\ingroup auxdat - ///Using this class you can assign "labels" (nonnegativ integer numbers) + ///Using this class you can assign "labels" (nonnegative integer numbers) ///to the edges or nodes of a graph, manipulate and query them through ///operations typically arising in "push-relabel" type algorithms. ///