COIN-OR::LEMON - Graph Library

Changeset 2384:805c5a2a36dd in lemon-0.x for lemon/graph_utils.h


Ignore:
Timestamp:
03/01/07 18:14:24 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3215
Message:

getNotifier to notifier renaming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/graph_utils.h

    r2350 r2384  
    18741874    explicit DescriptorMap(const Graph& _graph) : Map(_graph) {
    18751875      Item it;
    1876       const typename Map::Notifier* notifier = Map::getNotifier();
     1876      const typename Map::Notifier* notifier = Map::notifier();
    18771877      for (notifier->first(it); it != INVALID; notifier->next(it)) {
    18781878        Map::set(it, invMap.size());
     
    19361936      Map::build();
    19371937      Item it;
    1938       const typename Map::Notifier* notifier = Map::getNotifier();
     1938      const typename Map::Notifier* notifier = Map::notifier();
    19391939      for (notifier->first(it); it != INVALID; notifier->next(it)) {
    19401940        Map::set(it, invMap.size());
     
    22932293    /// Constructor for creating in-degree map.
    22942294    explicit InDegMap(const Graph& _graph) : graph(_graph), deg(_graph) {
    2295       Parent::attach(graph.getNotifier(typename _Graph::Edge()));
     2295      Parent::attach(graph.notifier(typename _Graph::Edge()));
    22962296     
    22972297      for(typename _Graph::NodeIt it(graph); it != INVALID; ++it) {
     
    24052405    /// Constructor for creating out-degree map.
    24062406    explicit OutDegMap(const Graph& _graph) : graph(_graph), deg(_graph) {
    2407       Parent::attach(graph.getNotifier(typename _Graph::Edge()));
     2407      Parent::attach(graph.notifier(typename _Graph::Edge()));
    24082408     
    24092409      for(typename _Graph::NodeIt it(graph); it != INVALID; ++it) {
Note: See TracChangeset for help on using the changeset viewer.