COIN-OR::LEMON - Graph Library

Changeset 2413:21eb3ccdc3df in lemon-0.x for demo/dim_to_dot.cc


Ignore:
Timestamp:
03/22/07 16:40:50 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3244
Message:

Right dimacs format for min cost flows
Bug fixes in tolerance and min_mean_cycle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • demo/dim_to_dot.cc

    r2391 r2413  
    1818
    1919///\file
    20 ///\brief Dim (Dimacs) to Dot (Graphviz) converter
     20///\brief Dim (DIMACS) to Dot (Graphviz) converter
    2121///
    22 /// This program can convert the dimacs format to graphviz dot format.
     22/// This program can convert the DIMACS format to Graphviz format.
    2323///
    24 /// Use a DIMACS max flow file as stdin.
     24/// <tt>dim_to_dot dimacs_max_flow_file > dot_output_file</tt>
    2525///
    26 /// <tt>dim_to_dot < dimacs_max_flow_file > dot_output_file</tt>
    27 ///
    28 /// This program makes a dot file from a dimacs max flow file.
    29 /// This program can be an aid in making up to date visualized documantation
    30 /// of demo programs.
     26/// This program makes a dot file from a DIMACS max flow file.
     27/// This program can be an aid in making up to date visualized
     28/// documantation of demo programs.
    3129///
    3230/// \include dim_to_dot.cc
     
    4745  if(argc<2)
    4846  {
    49       std::cerr << "USAGE: sub_graph_adaptor_demo input_file.dim" << std::endl;
     47      std::cerr << "USAGE: dim_to_dot input_file.dim" << std::endl;
    5048      std::cerr << "The file 'input_file.dim' has to contain a max flow instance in DIMACS format (e.g. sub_graph_adaptor_demo.dim is such a file)." << std::endl;
    5149      return 0;
    5250  }
    53 
    5451
    5552  //input stream to read the graph from
Note: See TracChangeset for help on using the changeset viewer.