1.1 --- a/lemon/dimacs.h Fri Sep 08 17:02:03 2017 +0200
1.2 +++ b/lemon/dimacs.h Fri Sep 08 17:04:30 2017 +0200
1.3 @@ -25,6 +25,7 @@
1.4 #include <limits>
1.5 #include <lemon/maps.h>
1.6 #include <lemon/error.h>
1.7 +
1.8 /// \ingroup dimacs_group
1.9 /// \file
1.10 /// \brief DIMACS file format reader.
1.11 @@ -118,7 +119,7 @@
1.12 /// a non-zero value, that value will be used as "infinite".
1.13 ///
1.14 /// If the file type was previously evaluated by dimacsType(), then
1.15 - /// the descriptor struct should be given by the \c dest parameter.
1.16 + /// the descriptor struct should be given by the \c desc parameter.
1.17 template <typename Digraph, typename LowerMap,
1.18 typename CapacityMap, typename CostMap,
1.19 typename SupplyMap>
1.20 @@ -272,7 +273,7 @@
1.21 /// a non-zero value, that value will be used as "infinite".
1.22 ///
1.23 /// If the file type was previously evaluated by dimacsType(), then
1.24 - /// the descriptor struct should be given by the \c dest parameter.
1.25 + /// the descriptor struct should be given by the \c desc parameter.
1.26 template<typename Digraph, typename CapacityMap>
1.27 void readDimacsMax(std::istream& is,
1.28 Digraph &g,
1.29 @@ -299,7 +300,7 @@
1.30 /// source node.
1.31 ///
1.32 /// If the file type was previously evaluated by dimacsType(), then
1.33 - /// the descriptor struct should be given by the \c dest parameter.
1.34 + /// the descriptor struct should be given by the \c desc parameter.
1.35 template<typename Digraph, typename LengthMap>
1.36 void readDimacsSp(std::istream& is,
1.37 Digraph &g,
1.38 @@ -330,7 +331,7 @@
1.39 /// a non-zero value, that value will be used as "infinite".
1.40 ///
1.41 /// If the file type was previously evaluated by dimacsType(), then
1.42 - /// the descriptor struct should be given by the \c dest parameter.
1.43 + /// the descriptor struct should be given by the \c desc parameter.
1.44 template<typename Digraph, typename CapacityMap>
1.45 void readDimacsCap(std::istream& is,
1.46 Digraph &g,
1.47 @@ -370,7 +371,7 @@
1.48 /// At the beginning, \c g is cleared by \c g.clear().
1.49 ///
1.50 /// If the file type was previously evaluated by dimacsType(), then
1.51 - /// the descriptor struct should be given by the \c dest parameter.
1.52 + /// the descriptor struct should be given by the \c desc parameter.
1.53 template<typename Graph>
1.54 void readDimacsMat(std::istream& is, Graph &g,
1.55 DimacsDescriptor desc=DimacsDescriptor())