lemon/dfs.h
changeset 158 500f3cbff9e4
parent 157 2ccc1afc2c52
child 209 765619b7cbb2
     1.1 --- a/lemon/dfs.h	Sat May 24 23:20:49 2008 +0200
     1.2 +++ b/lemon/dfs.h	Sun May 25 17:01:11 2008 +0200
     1.3 @@ -999,7 +999,7 @@
     1.4      template<class T>
     1.5      DfsWizard<DefReachedMapBase<T> > reachedMap(const T &t) 
     1.6      {
     1.7 -      Base::_pred=reinterpret_cast<void*>(const_cast<T*>(&t));
     1.8 +      Base::_reached=reinterpret_cast<void*>(const_cast<T*>(&t));
     1.9        return DfsWizard<DefReachedMapBase<T> >(*this);
    1.10      }
    1.11      
    1.12 @@ -1020,7 +1020,7 @@
    1.13      template<class T>
    1.14      DfsWizard<DefProcessedMapBase<T> > processedMap(const T &t) 
    1.15      {
    1.16 -      Base::_pred=reinterpret_cast<void*>(const_cast<T*>(&t));
    1.17 +      Base::_processed=reinterpret_cast<void*>(const_cast<T*>(&t));
    1.18        return DfsWizard<DefProcessedMapBase<T> >(*this);
    1.19      }
    1.20