COIN-OR::LEMON - Graph Library

Changeset 1160:d9c32f713cad in lemon-0.x for src/lemon


Ignore:
Timestamp:
02/21/05 10:28:00 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1561
Message:

We have UndirGraph?, so BidirGraph? has been removed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/graph_wrapper.h

    r1135 r1160  
    10381038
    10391039
    1040   /// \brief A bidirected graph template.
    1041   ///
    1042   ///\warning Graph wrappers are in even more experimental state than the other
    1043   ///parts of the lib. Use them at you own risk.
    1044   ///
    1045   /// A bidirected graph template.
    1046   /// Such a bidirected graph stores each pair of oppositely directed edges
    1047   /// ones in the memory, i.e. a directed graph of type
    1048   /// \c Graph is used for that.
    1049   /// As the oppositely directed edges are logically different ones
    1050   /// the maps are able to attach different values for them.
    1051   /// \ingroup graphs
    1052   template<typename Graph>
    1053   class BidirGraph : public BidirGraphWrapper<Graph> {
    1054   public:
    1055     typedef UndirGraphWrapper<Graph> Parent;
    1056   protected:
    1057     Graph gr;
    1058   public:
    1059     BidirGraph() : BidirGraphWrapper<Graph>() {
    1060       Parent::setGraph(gr);
    1061     }
    1062     //    KEEP_MAPS(Parent, BidirGraph);
    1063   };
    1064 
    1065 
    1066 
    10671040  template<typename Graph, typename Number,
    10681041           typename CapacityMap, typename FlowMap>
Note: See TracChangeset for help on using the changeset viewer.