diff -r 2ccc1afc2c52 -r 500f3cbff9e4 lemon/dfs.h --- a/lemon/dfs.h Sat May 24 23:20:49 2008 +0200 +++ b/lemon/dfs.h Sun May 25 17:01:11 2008 +0200 @@ -999,7 +999,7 @@ template DfsWizard > reachedMap(const T &t) { - Base::_pred=reinterpret_cast(const_cast(&t)); + Base::_reached=reinterpret_cast(const_cast(&t)); return DfsWizard >(*this); } @@ -1020,7 +1020,7 @@ template DfsWizard > processedMap(const T &t) { - Base::_pred=reinterpret_cast(const_cast(&t)); + Base::_processed=reinterpret_cast(const_cast(&t)); return DfsWizard >(*this); }