COIN-OR::LEMON - Graph Library

Changeset 876:26c573ca6a99 in lemon-0.x


Ignore:
Timestamp:
09/16/04 22:55:01 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1180
Message:

Go back to -r1169 in order to be able to compile minlengthpath_test.cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/hugo/graph_wrapper.h

    r870 r876  
    230230      NodeMap(const GraphWrapper<Graph>& gw) :  Parent(*(gw.graph)) { }
    231231      NodeMap(const GraphWrapper<Graph>& gw, T a) : Parent(*(gw.graph), a) { }
    232       NodeMap(const NodeMap<T>& map) : Parent(map) { }
    233       template<typename Map>
    234       NodeMap(const Map& map) :  Parent(map) { }
     232//       NodeMap(const NodeMap<T>& map) : Parent(map) { }
     233//       template<typename Map>
     234//       NodeMap(const Map& map) :  Parent(map) { }
    235235    };
    236236
     
    240240      EdgeMap(const GraphWrapper<Graph>& gw) : Parent(*(gw.graph)) { }
    241241      EdgeMap(const GraphWrapper<Graph>& gw, T a) : Parent(*(gw.graph), a) { }
    242       EdgeMap(const EdgeMap<T>& map) : Parent(map) { }
    243       template<typename Map>
    244       EdgeMap(const Map& map) :  Parent(map) { }
     242//       EdgeMap(const EdgeMap<T>& map) : Parent(map) { }
     243//       template<typename Map>
     244//       EdgeMap(const Map& map) :  Parent(map) { }
    245245    };
    246246  };
Note: See TracChangeset for help on using the changeset viewer.