lemon/kruskal.h
changeset 167 d57ae6f0a335
parent 136 b82dc494bafc
child 194 74cd0c58b348
     1.1 --- a/lemon/kruskal.h	Wed Jun 04 11:28:08 2008 +0100
     1.2 +++ b/lemon/kruskal.h	Sat Jun 14 19:34:15 2008 +0200
     1.3 @@ -229,7 +229,7 @@
     1.4        typedef typename In::value_type::second_type Value;
     1.5  
     1.6        static Value kruskal(const Graph& graph, const In& in, Out& out) {
     1.7 -        typedef StoreBoolMap<typename RemoveConst<Out>::type> Map;
     1.8 +        typedef LoggerBoolMap<typename RemoveConst<Out>::type> Map;
     1.9          Map map(out);
    1.10          return _kruskal_bits::kruskal(graph, in, map);
    1.11        }