# HG changeset patch
# User Peter Kovacs <kpeter@inf.elte.hu>
# Date 1504883070 -7200
# Node ID 332627dd249ee9d8e702fee6d0bd94dc406298e8
# Parent f37f0845cf3238988e8f635b32f3d173cd957f0f
Fixes in API doc of DIMACS reader methods
diff --git a/lemon/dimacs.h b/lemon/dimacs.h
|
a
|
b
|
|
| 25 | 25 | #include <limits> |
| 26 | 26 | #include <lemon/maps.h> |
| 27 | 27 | #include <lemon/error.h> |
| | 28 | |
| 28 | 29 | /// \ingroup dimacs_group |
| 29 | 30 | /// \file |
| 30 | 31 | /// \brief DIMACS file format reader. |
| … |
… |
|
| 118 | 119 | /// a non-zero value, that value will be used as "infinite". |
| 119 | 120 | /// |
| 120 | 121 | /// If the file type was previously evaluated by dimacsType(), then |
| 121 | | /// the descriptor struct should be given by the \c dest parameter. |
| | 122 | /// the descriptor struct should be given by the \c desc parameter. |
| 122 | 123 | template <typename Digraph, typename LowerMap, |
| 123 | 124 | typename CapacityMap, typename CostMap, |
| 124 | 125 | typename SupplyMap> |
| … |
… |
|
| 272 | 273 | /// a non-zero value, that value will be used as "infinite". |
| 273 | 274 | /// |
| 274 | 275 | /// If the file type was previously evaluated by dimacsType(), then |
| 275 | | /// the descriptor struct should be given by the \c dest parameter. |
| | 276 | /// the descriptor struct should be given by the \c desc parameter. |
| 276 | 277 | template<typename Digraph, typename CapacityMap> |
| 277 | 278 | void readDimacsMax(std::istream& is, |
| 278 | 279 | Digraph &g, |
| … |
… |
|
| 299 | 300 | /// source node. |
| 300 | 301 | /// |
| 301 | 302 | /// If the file type was previously evaluated by dimacsType(), then |
| 302 | | /// the descriptor struct should be given by the \c dest parameter. |
| | 303 | /// the descriptor struct should be given by the \c desc parameter. |
| 303 | 304 | template<typename Digraph, typename LengthMap> |
| 304 | 305 | void readDimacsSp(std::istream& is, |
| 305 | 306 | Digraph &g, |
| … |
… |
|
| 330 | 331 | /// a non-zero value, that value will be used as "infinite". |
| 331 | 332 | /// |
| 332 | 333 | /// If the file type was previously evaluated by dimacsType(), then |
| 333 | | /// the descriptor struct should be given by the \c dest parameter. |
| | 334 | /// the descriptor struct should be given by the \c desc parameter. |
| 334 | 335 | template<typename Digraph, typename CapacityMap> |
| 335 | 336 | void readDimacsCap(std::istream& is, |
| 336 | 337 | Digraph &g, |
| … |
… |
|
| 370 | 371 | /// At the beginning, \c g is cleared by \c g.clear(). |
| 371 | 372 | /// |
| 372 | 373 | /// If the file type was previously evaluated by dimacsType(), then |
| 373 | | /// the descriptor struct should be given by the \c dest parameter. |
| | 374 | /// the descriptor struct should be given by the \c desc parameter. |
| 374 | 375 | template<typename Graph> |
| 375 | 376 | void readDimacsMat(std::istream& is, Graph &g, |
| 376 | 377 | DimacsDescriptor desc=DimacsDescriptor()) |