COIN-OR::LEMON - Graph Library

Changeset 2081:94a7deb46c07 in lemon-0.x for demo/dim_to_dot.cc


Ignore:
Timestamp:
05/12/06 17:29:42 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2744
Message:

New demo file for computing disjoint paths

Doc review

Correcting misformatting in adaptors
Adding header to demos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • demo/dim_to_dot.cc

    r1956 r2081  
    1717 */
    1818
    19 // Use a DIMACS max flow file as stdin.
    20 // dim_to_dot < dimacs_max_flow_file > dot_output_file
    21 // This program makes a dot file from a dimacs max flow file.
    22 // This program can be an aid in making up to date visualized documantation
    23 // of demo programs.
    24 
    25 // For later documentation (if marci does not do it)
    26 // Az a graphviz csomag egy egyszeru formatuma, ami egy graphrajzolo csomag.
    27 // Az EdgeSubGraphAdaptor doksijaban szerepel egy kirajzolt graf. Azt nem
    28 // kezzel csinaltam, hanem a megfelelo dim file-bol ezzel a progival. A
    29 // doxygen ugyanis ilyet eszik, igy a juzer vizualisan is latja a grafot a
    30 // doksiban, es sajat maga is le tudja futtatni az algoritmust, mert ott van
    31 // a kezeben a dim file is. Es mivel ez egy generalt file, ezert ha vmit
    32 // valtoztatunk a dim-en, ezt is konnyu bemasolni. Uff.
    33 
     19///\file
     20///\brief Dim (Dimacs) to Dot (Graphviz) converter
     21///
     22/// This program can convert the dimacs format to graphviz dot format.
     23///
     24/// Use a DIMACS max flow file as stdin.
     25///
     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.
     31///
     32/// \include dim_to_dot.cc
    3433
    3534#include <iostream>
Note: See TracChangeset for help on using the changeset viewer.