From: Daniel Mitchell (danmitchell_at_[hidden])
Date: 2006-05-29 14:04:52


On Monday 29 May 2006 05:20, Jens Müller wrote:
> Am I missing something, or where is "num"?

No, you're not missing anything. I think that part of the documentation is a
relic from an older version of BGL. If you look in graph/properties.hpp, the
property tags are defined like

namespace boost {
  enum edge_weight_t { edge_weight };
  
  template<>
  struct property_kind<edge_weight_t> {
    typedef edge_property_tag type;
  };
}

As you can see, there's no reference to "num."

D.