# HG changeset patch # User alpar # Date 1142415857 0 # Node ID 00d59f733817901d0ca4b8c148758534eae2d7c8 # Parent 84ec2948eb1fbc831f71f2081e5eb1c536b17fc9 Spellcheck diff -r 84ec2948eb1f -r 00d59f733817 doc/groups.dox --- a/doc/groups.dox Fri Mar 10 19:34:47 2006 +0000 +++ b/doc/groups.dox Wed Mar 15 09:44:17 2006 +0000 @@ -25,11 +25,11 @@ Alteration of standard containers need a very limited number of operations, these together satisfy the everyday requirements. In the case of graph strutures, different operations are needed which do -not alter the physical graph, but gives an other view. If some nodes or +not alter the physical graph, but gives another view. If some nodes or edges have to be hidden or the reverse oriented graph have to be used, then this is the case. It also may happen that in a flow implemenation -the residual graph can be accessed by an other algorithm, or a node-set -is to be shrunk for an other algorithm. +the residual graph can be accessed by another algorithm, or a node-set +is to be shrunk for another algorithm. LEMON also provides a variety of graphs for these requirements called \ref graph_adaptors "graph adaptors". Adaptors cannot be used alone but only in conjunction with other graph representation. diff -r 84ec2948eb1f -r 00d59f733817 lemon/bits/alteration_notifier.h --- a/lemon/bits/alteration_notifier.h Fri Mar 10 19:34:47 2006 +0000 +++ b/lemon/bits/alteration_notifier.h Wed Mar 15 09:44:17 2006 +0000 @@ -44,7 +44,7 @@ /// that the node and edge maps should contain values for all nodes or /// edges. If we want to check on every indicing if the map contains /// the current indicing key that cause a drawback in the performance - /// in the library. We use an other solution we notify all maps about + /// in the library. We use another solution we notify all maps about /// an alteration in the graph, which cause only drawback on the /// alteration of the graph. /// diff -r 84ec2948eb1f -r 00d59f733817 lemon/graph_utils.h --- a/lemon/graph_utils.h Fri Mar 10 19:34:47 2006 +0000 +++ b/lemon/graph_utils.h Wed Mar 15 09:44:17 2006 +0000 @@ -456,7 +456,7 @@ /// \brief Class to copy a graph. /// - /// Class to copy a graph to an other graph (duplicate a graph). The + /// Class to copy a graph to another graph (duplicate a graph). The /// simplest way of using it is through the \c copyGraph() function. template class GraphCopy { @@ -579,9 +579,9 @@ EdgeRefMap edgeRefMap; }; - /// \brief Copy a graph to an other graph. + /// \brief Copy a graph to another graph. /// - /// Copy a graph to an other graph. + /// Copy a graph to another graph. /// The usage of the function: /// ///\code @@ -599,7 +599,7 @@ /// \brief Class to copy an undirected graph. /// - /// Class to copy an undirected graph to an other graph (duplicate a graph). + /// Class to copy an undirected graph to another graph (duplicate a graph). /// The simplest way of using it is through the \c copyUGraph() function. template class UGraphCopy { @@ -791,9 +791,9 @@ UEdgeRefMap uEdgeRefMap; }; - /// \brief Copy a graph to an other graph. + /// \brief Copy a graph to another graph. /// - /// Copy a graph to an other graph. + /// Copy a graph to another graph. /// The usage of the function: /// ///\code diff -r 84ec2948eb1f -r 00d59f733817 lemon/sub_graph.h --- a/lemon/sub_graph.h Fri Mar 10 19:34:47 2006 +0000 +++ b/lemon/sub_graph.h Wed Mar 15 09:44:17 2006 +0000 @@ -373,9 +373,9 @@ /// \ingroup semi_adaptors /// - /// \brief Graph which uses a subset of an other graph's nodes and edges. + /// \brief Graph which uses a subset of another graph's nodes and edges. /// - /// Graph which uses a subset of an other graph's nodes and edges. This class + /// Graph which uses a subset of another graph's nodes and edges. This class /// is an alternative to the SubGraphAdaptor which is created for the /// same reason. The main difference between the two class that it /// makes linked lists on the unhidden nodes and edges what cause that @@ -670,9 +670,9 @@ /// \ingroup semi_adaptors /// - /// \brief Graph which uses a subset of an other graph's edges. + /// \brief Graph which uses a subset of another graph's edges. /// - /// Graph which uses a subset of an other graph's edges. This class + /// Graph which uses a subset of another graph's edges. This class /// is an alternative to the EdgeSubGraphAdaptor which is created for the /// same reason. The main difference between the two class that it /// makes linked lists on the unhidden edges what cause that diff -r 84ec2948eb1f -r 00d59f733817 lemon/unionfind.h --- a/lemon/unionfind.h Fri Mar 10 19:34:47 2006 +0000 +++ b/lemon/unionfind.h Wed Mar 15 09:44:17 2006 +0000 @@ -429,7 +429,7 @@ } /** - * \brief Moves the given element to an other component. + * \brief Moves the given element to another component. * * This method moves the element \e a from its component * to the component of \e comp. diff -r 84ec2948eb1f -r 00d59f733817 lemon/xy.h --- a/lemon/xy.h Fri Mar 10 19:34:47 2006 +0000 +++ b/lemon/xy.h Wed Mar 15 09:44:17 2006 +0000 @@ -400,7 +400,7 @@ // return b += u; // } - ///Increments a bounding box with an other bounding box + ///Increments a bounding box with another bounding box BoundingBox& add(const BoundingBox &u){ if ( !u.empty() ){ this->add(u.bottomLeft()); diff -r 84ec2948eb1f -r 00d59f733817 test/xy_test.cc --- a/test/xy_test.cc Fri Mar 10 19:34:47 2006 +0000 +++ b/test/xy_test.cc Wed Mar 15 09:44:17 2006 +0000 @@ -78,5 +78,5 @@ doboz2.add(doboz1); check(doboz2.inside(seged), - "It should be inside. Incremented a box with an other."); + "It should be inside. Incremented a box with another one."); }