Ticket #5199: subgraph-escaping.patch

File subgraph-escaping.patch, 669 bytes (added by Kim Gräsman <kim@…>, 12 years ago)
  • subgraph.html

     
    7676and subgraphs in Figure 1, so we will need a total of six vertices.
    7777
    7878<pre>
    79 typedef adjacency_list_traits<vecS, vecS, directedS> Traits;
    80 typedef subgraph< adjacency_list<vecS, vecS, directedS,
    81   no_property, property<edge_index_t, int> > > Graph;
     79typedef adjacency_list_traits&lt; vecS, vecS, directedS &gt; Traits;
     80typedef subgraph&lt; adjacency_list&lt; vecS, vecS, directedS,
     81  no_property, property&lt; edge_index_t, int &gt; &gt; &gt; Graph;
    8282
    8383const int N = 6;
    8484Graph G0(N);