|
Boost : |
From: Serge Pashkov (psw_at_[hidden])
Date: 2001-06-18 00:42:10
Hello,
In boost/pending/disjoint_sets.hpp we have
struct find_with_path_halving {
template <class ParentPA, class Vertex>
Vertex operator()(ParentPA p, Vertex v) {
return detail::find_representative_with_path_halving(pc, v);
}
};
Probably ...(pc,v) is typo, should be
struct find_with_path_halving {
template <class ParentPA, class Vertex>
Vertex operator()(ParentPA p, Vertex v) {
return detail::find_representative_with_path_halving(p, v);
}
};
-- Best regards, Serge mailto:psw_at_[hidden]
Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk