COIN-OR::LEMON - Graph Library

Changeset 1287:984723507b86 in lemon-0.x


Ignore:
Timestamp:
04/01/05 10:47:40 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1720
Message:

New groups called io_group and dimacs_group added

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • doc/groups.dox

    r1172 r1287  
    103103
    104104/**
     105@defgroup io_group Input Output
     106Here you can find tools for imporing and exporting graphs and graph related
     107data
     108*/
     109
     110/**
    105111@defgroup concept Concepts
    106112\brief Skeleton classes and concept checking classes
  • doc/quicktour.dox

    r1183 r1287  
    121121\endcode
    122122
    123 See the whole program in \file dijkstra_demo.cc.
     123See the whole program in \ref dijkstra_demo.cc.
    124124
    125125The first part of the code is self-explanatory: we build the graph and set the
  • src/lemon/dimacs.h

    r1190 r1287  
    2424#include <lemon/invalid.h>
    2525
    26 /// \ingroup misc
     26/// \ingroup dimacs_group
    2727/// \file
    2828/// \brief Dimacs file format reader.
     
    3030namespace lemon {
    3131
    32 
    33   /// \addtogroup misc
     32  ///
     33  ///@defgroup dimacs_group DIMACS format
     34  ///\brief Read and write files in DIMACS format
     35  ///
     36  ///Tools to read a graph from or write it to a file in DIMACS format
     37  ///data
     38  ///\ingroup io_group
     39
     40  /// \addtogroup dimacs_group
    3441  /// @{
    3542
  • src/lemon/graph_reader.h

    r1250 r1287  
    1515 */
    1616
    17 ///\ingroup gio
     17///\ingroup io_group
    1818///\file
    19 ///\brief Graph reader.
     19///\brief Lemon Graph Format reader.
    2020
    2121#ifndef LEMON_GRAPH_READER_H
     
    4242  struct DefaultReaderTraits {
    4343
    44     /// \brief Template class for reading an value.
     44   /// \brief Template class for reading an value.
    4545    ///
    4646    /// Template class for reading an value.
     
    172172  /// \brief The graph reader class.
    173173  ///
     174  /// \ingroup io_group
    174175  /// The reader class for the graph input.
     176  /// \see DefaultReaderTraits
     177  /// \see QuotedStringReader
    175178  /// \see \ref GraphWriter
    176179  /// \see \ref graph-io-page
  • src/lemon/graph_to_eps.h

    r1234 r1287  
    3232#include<lemon/bezier.h>
    3333
    34 ///\ingroup misc
     34///\ingroup io_group
    3535///\file
    3636///\brief Simple graph drawer
     
    975975///Generates an EPS file from a graph
    976976
    977 ///\ingroup misc
     977///\ingroup io_group
    978978///Generates an EPS file from a graph.
    979979///\param g is a reference to the graph to be printed
  • src/lemon/graph_writer.h

    r1214 r1287  
    1515 */
    1616
    17 ///\ingroup gio
     17///\ingroup io_group
    1818///\file
    19 ///\brief Graph writer.
     19///\brief Lemon Graph Format writer.
    2020
    2121#ifndef LEMON_GRAPH_WRITER_H
     
    147147  /// \brief The graph writer class.
    148148  ///
     149  ///\ingroup io_group
    149150  /// The writer class for the graph output.
     151  /// \see DefaultWriterTraits
     152  /// \see QuotedStringWriter
    150153  /// \see \ref GraphReader
    151154  /// \see \ref graph-io-page
Note: See TracChangeset for help on using the changeset viewer.