generate_random_graph metodu
Şu satırı dahil ederiz.
Şu satırı dahil ederiz.
Şu satırı dahil ederiz.
#include <boost/graph/random.hpp>
Şöyle yaparız.using DualGraph = boost::adjacency_list< boost::vecS,
boost::vecS, boost::directedS,...,...>;
DualGraph g;
std::mt19937 rng { std::random_device{}() };
boost::generate_random_graph(g, 5, 5, rng);
write_graphviz_dp metoduŞu satırı dahil ederiz.
#include <boost/graph/graphviz.hpp>
Şöyle yaparız.using DualGraph = boost::adjacency_list< boost::vecS, boost::vecS, boost::directedS,...,...>;
boost::dynamic_properties dpDual;
DualGraph g;
...
boost::write_graphviz_dp(std::cout, g, dpDual);
Hiç yorum yok:
Yorum Gönder