29 Eylül 2016 Perşembe

graph subgraph Sınıfı

Giriş
Şu satırları dahil ederiz.
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/subgraph.hpp>
Tanımlama
Şöyle yaparız.
typedef subgraph<adjacency_list<vecS, vecS, undirectedS,  
property<vertex_color_t,int>,property<edge_name_t,int,property<edge_index_t,int>>,
propertyy<vertex_name_t, int,property<vertex_index_t,  int>>  >> Graph;
Constructor
Şöyle yaparız.
const int N = 6;

Graph G (N);
create_subgraph metodu
Şöyle yaparız.
Graph& g1 = g.create_subgraph();


Hiç yorum yok:

Yorum Gönder