COIN-OR::LEMON - Graph Library

Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/groups.dox

    r363 r318  
    465465
    466466/**
    467 @defgroup lemon_io LEMON Graph Format
     467@defgroup lemon_io LEMON Input-Output
    468468@ingroup io_group
    469469\brief Reading and writing LEMON Graph Format.
     
    480480This group describes general \c EPS drawing methods and special
    481481graph exporting tools.
    482 */
    483 
    484 /**
    485 @defgroup nauty_group NAUTY Format
    486 @ingroup io_group
    487 \brief Read \e Nauty format
    488 Tool to read graphs from \e Nauty format data.
    489482*/
    490483
  • lemon/nauty_reader.h

    r364 r362  
    2424#include <string>
    2525
     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
    2634/// \ingroup nauty_group
    2735/// \file
    2836/// \brief Nauty file reader.
    29 
    3037namespace lemon {
    3138
     
    3643  /// The \e geng program is in the \e gtools suite of the nauty
    3744  /// package. This tool can generate all non-isomorphic undirected
    38   /// graphs of several classes with given node number (e.g.
     45  /// graphs with given node number from several classes (for example,
    3946  /// general, connected, biconnected, triangle-free, 4-cycle-free,
    4047  /// bipartite and graphs with given edge number and degree
    41   /// constraints). This function reads a \e nauty \e graph \e format
     48  /// constraints). This function reads a \e nauty \e graph6 \e format
    4249  /// line from the given stream and builds it in the given graph.
    4350  ///
    4451  /// The site of nauty package: http://cs.anu.edu.au/~bdm/nauty/
    4552  ///
    46   /// For example, the number of all non-isomorphic planar graphs
    47   /// can be computed with the following code.
     53  /// For example, the number of all non-isomorphic connected graphs
     54  /// can be computed with following code.
    4855  ///\code
    4956  /// int num = 0;
     
    5764  ///
    5865  /// The nauty files are quite huge, therefore instead of the direct
    59   /// file generation pipelining is recommended. For example,
     66  /// file generation the pipelining is recommended.
    6067  ///\code
    61   /// ./geng -c 10 | ./num_of_planar_graphs
     68  /// ./geng -c 10 | ./num_of_pg
    6269  ///\endcode
    6370  template <typename Graph>
    64   std::istream& readNauty(Graph& graph, std::istream& is = std::cin) {
     71  std::istream& readNauty(Graph& graph, std::istream& is) {
    6572    graph.clear();
    6673
Note: See TracChangeset for help on using the changeset viewer.