Changes between Initial Version and Version 1 of soc/2007/UserFriendlyGraphDesignTwo


Ignore:
Timestamp:
May 14, 2007, 3:45:19 PM (15 years ago)
Author:
Andrew Sutton
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • soc/2007/UserFriendlyGraphDesignTwo

    v1 v1  
     1A second design approach uses composition as a member rather than private inheritance - not for any particular reason, I'm just more familiar with composition. Now, the prototype looks like this:
     2{{{
     3#!cpp
     4namespace boost {
     5  template <class VL, class EL, class OEL, class VP, class EP, class GP>
     6  class undirected_graph
     7  {
     8    typedef adjacency_list<OEL, VL, undirectedS, VP, EP, GP, EL> graph_type;
     9    graph_type graph;
     10
     11    public:
     12      graph_type& impl();
     13      const graph_type& impl();
     14
     15    // other stuff so we comply with graph_traits<>
     16  };
     17
     18  // example add_vertex() function...
     19  template <class VL, class EL, class OEL, class VP, class EP, class GP>
     20  inline undirected_graph<VL, EL, OEL, VP, EP, GP>::vertex_descriptor
     21  add_vertex(undirected_graph<VL, EL, OEL, VP, EP, GP> &g)
     22  {
     23    return add_vertex(g.impl());  // calls add_vertex() for adjacency_list
     24  }
     25}
     26}}}
     27== Rationale ==
     28This is essentially a direct migration of [wiki:soc/2007/UserFriendlyGraphDesignOne my first design] using inheritance to composition. Funtionally, it should be identical to the first, except that it should completely eliminate strange name lookup artifacts caused by inheritance (especially if I write this class in a new `boost::graph` namespace.
     29
     30== Remarks ==
     31Clearly a very different approach, but once complete it should preserve all of the concept requirements given in the documentation. Interestingly, this is somewhat similar to graph adapter classes except that we aren't really adapting the adjacency list to a different purpose - we're just reducing the "abstractness" of the class by requiring (in this case), that it is instantiated with the `undirectedS` parameter. This approach is also a little more flexible than the previous in that we can add to this class without fear of unexpected consequences in the details of the original implementation. Of course, with this I'll have to write more code.