COIN-OR::LEMON - Graph Library

Changeset 2491:b63ae56979ef in lemon-0.x for tools/dim_to_lgf.cc


Ignore:
Timestamp:
10/09/07 19:11:42 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3330
Message:

Documentation for lemon tools

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/dim_to_lgf.cc

    r2417 r2491  
    1717 */
    1818
    19 ///\ingroup demos
     19///\ingroup tools
    2020///\file
    2121///\brief DIMACS to LGF converter.
     
    2424/// (LGF).
    2525///
    26 /// \include dim_to_lgf.cc
     26///\verbatim
     27///Usage:
     28///  ./tools/dim_to_lgf
     29///     --mincostflow|-mcf|--maxflow|-mf|--shortestpath|-sp|--capacitated|-cap|--plain|-pl
     30///     [--help|-h|-help] [--input|-i str] [--output|-o str] [--version|-v]
     31///Where:
     32///  --capacitated|-cap
     33///     set the type of the graph to "capacitated" graph
     34///  --help|-h|-help
     35///     Print a short help message
     36///  --input|-i str
     37///     use FILE as input instead of standard input
     38///  --maxflow|-mf
     39///     set the type of the graph to "maxflow" graph
     40///  --mincostflow|-mcf
     41///     set the type of the graph to "mincostflow" graph
     42///  --output|-o str
     43///     use FILE as output instead of standard output
     44///  --plain|-pl
     45///     set the type of the graph to "plain" graph
     46///  --shortestpath|-sp
     47///     set the type of the graph to "shortestpath" graph
     48///  --version|-v
     49///     show version information
     50///\endverbatim
     51///
    2752
    2853#include <iostream>
Note: See TracChangeset for help on using the changeset viewer.