COIN-OR::LEMON - Graph Library

Ticket #290: 290-edges-sets-d9cf3b5858ae.patch

File 290-edges-sets-d9cf3b5858ae.patch, 1.8 KB (added by Peter Kovacs, 15 years ago)
  • doc/groups.dox

    # HG changeset patch
    # User Peter Kovacs <kpeter@inf.elte.hu>
    # Date 1242054280 -7200
    # Node ID d9cf3b5858aebc854b94433dcd6ada37c6306db9
    # Parent  88753a77c6348103b92da11df6b10084411c23d9
    Move list and edge sets to the graph module (#290)
    
    diff --git a/doc/groups.dox b/doc/groups.dox
    a b  
    138138*/
    139139
    140140/**
    141 @defgroup semi_adaptors Semi-Adaptor Classes for Graphs
    142 @ingroup graphs
    143 \brief Graph types between real graphs and graph adaptors.
    144 
    145 This group contains some graph types between real graphs and graph adaptors.
    146 These classes wrap graphs to give new functionality as the adaptors do it.
    147 On the other hand they are not light-weight structures as the adaptors.
    148 */
    149 
    150 /**
    151141@defgroup maps Maps
    152142@ingroup datas
    153143\brief Map structures implemented in LEMON.
  • lemon/edge_set.h

    diff --git a/lemon/edge_set.h b/lemon/edge_set.h
    a b  
    2222#include <lemon/core.h>
    2323#include <lemon/bits/edge_set_extender.h>
    2424
    25 /// \ingroup semi_adaptors
     25/// \ingroup graphs
    2626/// \file
    2727/// \brief ArcSet and EdgeSet classes.
    2828///
     
    230230
    231231  };
    232232
    233   /// \ingroup semi_adaptors
     233  /// \ingroup graphs
    234234  ///
    235235  /// \brief Digraph using a node set of another digraph or graph and
    236236  /// an own arc set.
     
    654654
    655655  };
    656656
    657   /// \ingroup semi_adaptors
     657  /// \ingroup graphs
    658658  ///
    659659  /// \brief Graph using a node set of another digraph or graph and an
    660660  /// own edge set.
     
    913913  };
    914914
    915915
    916   /// \ingroup semi_adaptors
     916  /// \ingroup graphs
    917917  ///
    918918  /// \brief Digraph using a node set of another digraph or graph and
    919919  /// an own arc set.
     
    12571257
    12581258  };
    12591259
    1260   /// \ingroup semi_adaptors
     1260  /// \ingroup graphs
    12611261  ///
    12621262  /// \brief Graph using a node set of another digraph or graph and an
    12631263  /// own edge set.