COIN-OR::LEMON - Graph Library

Changeset 56:11bd4cea8379 in lemon-tutorial


Ignore:
Timestamp:
03/01/10 02:28:05 (14 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Slightly extend LGF section

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lgf.dox

    r44 r56  
    110110    .run();
    111111\endcode
     112
     113Undirected graphs can be stored in LGF format in almost the same way.
     114The <tt>\@arcs</tt> section can also be called <tt>\@edges</tt>, they are
     115identical. The only speciality is that arc maps can be distinguished from
     116edge maps using a \c + or \c - prefix before the name of the map.
     117For example,
     118
     119\code
     120  @edges
     121            label  +length  -length 
     122  0    1    0      10       20
     123  ...
     124\endcode
     125
     126In conjunction with undirected graphs, the classes \ref GraphReader and
     127\ref GraphWriter can be used.
    112128 
    113 Apart from LGF, the library can also handle other graph
     129For more information, see the \ref lgf-format "description of the LGF format"
     130and the \ref io_group module in the reference manual.
     131For a working example, see \ref lgf_demo.cc in the demo directory
     132of the LEMON source.
     133
     134\note Apart from LGF, the library can also handle other graph
    114135formats, such as the well-known DIMACS format.
    115 
    116 For more information, see a more detailed \ref lgf-format
    117 "description of the LGF format" and the \ref io_group module
    118 in the reference manual.
    119136
    120137[TRAILER]
Note: See TracChangeset for help on using the changeset viewer.