Boost C++ Libraries: Ticket #11666: graph library documentation issues ("Using adjacency_list") https://svn.boost.org/trac10/ticket/11666 <p> I am currently studying the "Using adjacency_list" documentation page (libs/graph/doc/using_adjacency_list.html), and I found several issues: </p> <blockquote class="citation"> <p> Creating your own property types and properties is easy; just define a tag class for your new property. The property tag class <strong>will need to define num</strong> with a <strong>unique</strong> integer ID, and kind which should be either edge_property_tag, vertex_property_tag, or graph_property_tag. </p> <pre class="wiki">struct flow_t { typedef edge_property_tag kind; }; </pre></blockquote> <ol><li>Where is <em>num</em> defined? (Is it necessary at all?) </li><li>(If necessary) where exactly does it need to be unique? (Within a certain namespace? Over all edge properties? Over all vertex+edge properties? </li><li>What about the range (number of bits?), reserved numbers/ranges and consecutiveness? </li></ol><blockquote class="citation"> <p> Access the propety acessor type for this graph </p> </blockquote> <p> (Typo in "property") </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/11666 Trac 1.4.3 viboes Wed, 23 Sep 2015 23:09:28 GMT component changed; owner set https://svn.boost.org/trac10/ticket/11666#comment:1 https://svn.boost.org/trac10/ticket/11666#comment:1 <ul> <li><strong>owner</strong> set to <span class="trac-author">Jeremiah Willcock</span> </li> <li><strong>component</strong> <span class="trac-field-old">None</span> → <span class="trac-field-new">graph</span> </li> </ul> Ticket