diff -r 02083323ff2c -r ef12f83752f6 basics.dox --- a/basics.dox Mon Feb 15 01:47:33 2010 +0100 +++ b/basics.dox Mon Feb 15 01:51:58 2010 +0100 @@ -2,7 +2,7 @@ * * This file is a part of LEMON, a generic C++ optimization library. * - * Copyright (C) 2003-2009 + * Copyright (C) 2003-2010 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * @@ -124,9 +124,9 @@ \note Contrary to the iterators in the C++ Standard Template Library (STL), LEMON iterators are convertible to the corresponding -item types without having to use \c %operator*(). This is not confusing, since the -program context always indicates whether we refer to the iterator or to the graph -item (they do not have conflicting functionalities). +item types without having to use \c %operator*(). This is not confusing, +since the program context always indicates whether we refer to the iterator +or to the graph item (they do not have conflicting functionalities). The graph items are also ordered by the 'less than' operator (with respect to their integer identifiers). For example, this code will add only one of the @@ -154,7 +154,7 @@ \endcode Finally, you can also list the arcs starting from or arriving at a -certain node with +certain node with \ref concepts::Digraph::OutArcIt "ListDigraph::OutArcIt" and \ref concepts::Digraph::InArcIt "ListDigraph::InArcIt".