COIN-OR::LEMON - Graph Library

Changeset 987:87f7c54892df in lemon-0.x for src/lemon/graph_wrapper.h


Ignore:
Timestamp:
11/13/04 18:07:10 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1377
Message:

Naming changes:

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/graph_wrapper.h

    r986 r987  
    11221122      typename Graph::template EdgeMap<T> forward_map, backward_map;
    11231123    public:
    1124       typedef T ValueType;
    1125       typedef Edge KeyType;
     1124      typedef T Value;
     1125      typedef Edge Key;
    11261126
    11271127      EdgeMap(const SubBidirGraphWrapper<Graph,
     
    11511151      }
    11521152
    1153       typename Graph::template EdgeMap<T>::ConstReferenceType
     1153      typename Graph::template EdgeMap<T>::ConstReference
    11541154      operator[](Edge e) const {
    11551155        if (!e.backward)
     
    11591159      }
    11601160
    1161       typename Graph::template EdgeMap<T>::ReferenceType
     1161      typename Graph::template EdgeMap<T>::Reference
    11621162      operator[](Edge e) {
    11631163        if (!e.backward)
     
    13461346      const ResGraphWrapper<Graph, Number, CapacityMap, FlowMap>* res_graph;
    13471347    public:
    1348       typedef Number ValueType;
    1349       typedef Edge KeyType;
     1348      typedef Number Value;
     1349      typedef Edge Key;
    13501350      ResCap(const ResGraphWrapper<Graph, Number, CapacityMap, FlowMap>&
    13511351             _res_graph) : res_graph(&_res_graph) { }
Note: See TracChangeset for help on using the changeset viewer.