demo/dim_to_dot.cc
changeset 2081 94a7deb46c07
parent 1956 a055123339d5
child 2391 14a343be7a5a
     1.1 --- a/demo/dim_to_dot.cc	Fri May 12 09:57:03 2006 +0000
     1.2 +++ b/demo/dim_to_dot.cc	Fri May 12 15:29:42 2006 +0000
     1.3 @@ -16,21 +16,20 @@
     1.4   *
     1.5   */
     1.6  
     1.7 -// Use a DIMACS max flow file as stdin.
     1.8 -// dim_to_dot < dimacs_max_flow_file > dot_output_file
     1.9 -// This program makes a dot file from a dimacs max flow file. 
    1.10 -// This program can be an aid in making up to date visualized documantation 
    1.11 -// of demo programs.
    1.12 -
    1.13 -// For later documentation (if marci does not do it)
    1.14 -// Az a graphviz csomag egy egyszeru formatuma, ami egy graphrajzolo csomag.
    1.15 -// Az EdgeSubGraphAdaptor doksijaban szerepel egy kirajzolt graf. Azt nem
    1.16 -// kezzel csinaltam, hanem a megfelelo dim file-bol ezzel a progival. A
    1.17 -// doxygen ugyanis ilyet eszik, igy a juzer vizualisan is latja a grafot a
    1.18 -// doksiban, es sajat maga is le tudja futtatni az algoritmust, mert ott van
    1.19 -// a kezeben a dim file is. Es mivel ez egy generalt file, ezert ha vmit
    1.20 -// valtoztatunk a dim-en, ezt is konnyu bemasolni. Uff.
    1.21 -
    1.22 +///\file
    1.23 +///\brief Dim (Dimacs) to Dot (Graphviz) converter
    1.24 +///
    1.25 +/// This program can convert the dimacs format to graphviz dot format.
    1.26 +///
    1.27 +/// Use a DIMACS max flow file as stdin.
    1.28 +///
    1.29 +/// <tt>dim_to_dot < dimacs_max_flow_file > dot_output_file</tt>
    1.30 +///
    1.31 +/// This program makes a dot file from a dimacs max flow file. 
    1.32 +/// This program can be an aid in making up to date visualized documantation 
    1.33 +/// of demo programs.
    1.34 +///
    1.35 +/// \include dim_to_dot.cc
    1.36  
    1.37  #include <iostream>
    1.38  #include <fstream>