COIN-OR::LEMON - Graph Library

Changeset 1669:66ae78d29f1e in lemon-0.x for lemon/full_graph.h


Ignore:
Timestamp:
08/31/05 15:29:32 (19 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2185
Message:

Template assign operator for graph maps.

Some naming and coding conventions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/full_graph.h

    r1643 r1669  
    196196  typedef IterableGraphExtender<AlterableFullGraphBase>
    197197  IterableFullGraphBase;
    198   typedef DefaultMappableGraphExtender<IterableFullGraphBase>
    199   MappableFullGraphBase;
     198  typedef MappableGraphExtender<
     199    IterableGraphExtender<
     200    AlterableGraphExtender<FullGraphBase> > > ExtendedFullGraphBase;
    200201
    201202  /// \ingroup graphs
     
    211212  ///
    212213  /// \author Alpar Juttner
    213   class FullGraph : public MappableFullGraphBase {
     214  class FullGraph : public ExtendedFullGraphBase {
    214215  public:
    215216
     
    379380  };
    380381
    381   typedef UndirGraphExtender<UndirFullGraphBase>
    382   UndirUndirFullGraphBase;
    383   typedef AlterableUndirGraphExtender<UndirUndirFullGraphBase>
    384   AlterableUndirFullGraphBase;
    385   typedef IterableUndirGraphExtender<AlterableUndirFullGraphBase>
    386   IterableUndirFullGraphBase;
    387   typedef MappableUndirGraphExtender<IterableUndirFullGraphBase>
    388   MappableUndirFullGraphBase;
     382  typedef MappableUndirGraphExtender<
     383    IterableUndirGraphExtender<
     384    AlterableUndirGraphExtender<
     385    UndirGraphExtender<UndirFullGraphBase> > > > ExtendedUndirFullGraphBase;
    389386
    390387  /// \ingroup graphs
     
    403400  ///
    404401  /// \author Balazs Dezso
    405   class UndirFullGraph : public MappableUndirFullGraphBase {
     402  class UndirFullGraph : public ExtendedUndirFullGraphBase {
    406403  public:
    407404    UndirFullGraph(int n) { construct(n); }
Note: See TracChangeset for help on using the changeset viewer.