COIN-OR::LEMON - Graph Library

Ticket #55: nauty1_95df249983db.patch

File nauty1_95df249983db.patch, 2.6 KB (added by Peter Kovacs, 16 years ago)
  • doc/groups.dox

    # HG changeset patch
    # User Peter Kovacs <kpeter@inf.elte.hu>
    # Date 1225540969 -3600
    # Node ID 95df249983db52dd0401545d246b6f5eb3b5c7d5
    # Parent  c6c6e1d863c4594c319451f9984ecad3cf417e8a
    Move the doc of the nauty group to groups.dox
    
    diff --git a/doc/groups.dox b/doc/groups.dox
    a b  
    235235LEMON contains several algorithms for solving maximum flow problems:
    236236- \ref lemon::EdmondsKarp "Edmonds-Karp"
    237237- \ref lemon::Preflow "Goldberg's Preflow algorithm"
    238 - \ref lemon::DinitzSleatorTarjan "Dinitz's blocking flow algorithm with dynamic trees"
     238- \ref lemon::DinitzSleatorTarjan "Dinitz's blocking flow algorithm with
     239  dynamic trees"
    239240- \ref lemon::GoldbergTarjan "Preflow algorithm with dynamic trees"
    240241
    241242In most cases the \ref lemon::Preflow "Preflow" algorithm provides the
     
    293294like connectivity, bipartiteness, euler property, simplicity etc.
    294295
    295296\image html edge_biconnected_components.png
    296 \image latex edge_biconnected_components.eps "bi-edge-connected components" width=\textwidth
     297\image latex edge_biconnected_components.eps
     298"bi-edge-connected components" width=\textwidth
    297299*/
    298300
    299301/**
     
    464466*/
    465467
    466468/**
    467 @defgroup lemon_io LEMON Input-Output
     469@defgroup lemon_io LEMON Graph Format
    468470@ingroup io_group
    469471\brief Reading and writing LEMON Graph Format.
    470472
     
    479481
    480482This group describes general \c EPS drawing methods and special
    481483graph exporting tools.
     484*/
     485
     486/**
     487@defgroup nauty_group NAUTY Format
     488@ingroup io_group
     489\brief Read \e Nauty format
     490Tool to read graphs from \e Nauty format data.
    482491*/
    483492
    484493/**
     
    530539/**
    531540\anchor demoprograms
    532541
    533 @defgroup demos Demo programs
     542@defgroup demos Demo Programs
    534543
    535544Some demo programs are listed here. Their full source codes can be found in
    536545the \c demo subdirectory of the source tree.
     
    540549*/
    541550
    542551/**
    543 @defgroup tools Standalone utility applications
     552@defgroup tools Standalone Utility Applications
    544553
    545554Some utility applications are listed here.
    546555
  • lemon/nauty_reader.h

    diff --git a/lemon/nauty_reader.h b/lemon/nauty_reader.h
    a b  
    1919#ifndef LEMON_NAUTY_READER_H
    2020#define LEMON_NAUTY_READER_H
    2121
     22/// \ingroup nauty_group
     23/// \file
     24/// \brief Nauty file reader.
     25
    2226#include <vector>
    2327#include <iostream>
    2428#include <string>
    2529
    26 /// \ingroup io_group
    27 ///
    28 /// @defgroup nauty_group NAUTY format
    29 ///
    30 /// \brief Read \e Nauty format
    31 ///
    32 /// Tool to read graphs from \e Nauty format data
    33 
    34 /// \ingroup nauty_group
    35 /// \file
    36 /// \brief Nauty file reader.
    3730namespace lemon {
    3831
    3932  /// \ingroup nauty_group