在文檔中:http://www.boost.org/doc/libs/1_46_1/libs/graph/doc/random.html#randomize_property如何在boost圖庫中使用捆綁屬性圖的`randomize_property`?
只有一個函數原型,我找不到一個工作的例子。 我嘗試了幾件事,但它不能編譯。 這裏有一個簡單的源代碼:
#include <ctime>
#include <iostream>
#include <boost/graph/random.hpp>
#include <boost/graph/adjacency_list.hpp>
#include <boost/random/linear_congruential.hpp>
#include <boost/graph/erdos_renyi_generator.hpp>
#include <boost/graph/graphviz.hpp>
using namespace std;
using namespace boost;
struct EdgeProperty {
int cost;
};
typedef adjacency_list<
setS, // disallow parallel edge
vecS,
undirectedS,
no_property,
EdgeProperty
> Graph;
typedef erdos_renyi_iterator<minstd_rand, Graph> ERGen;
int main(int argc, const char *argv[])
{
minstd_rand gen(time(0));
assert(argc >= 3);
int n = atoi(argv[1]);
double p = atof(argv[2]);
Graph g(ERGen(gen, n, p), ERGen(), n);
// randomize_property< [unknown class] >(g, gen);
return 0;
}
更新:通過@phooji作品提供的代碼。我加了一個默認構造EdgeProperty
和我的代碼編譯過:
struct EdgeProperty {
EdgeProperty(int x = 0) : cost(x) { }
int cost;
};
原來的編譯錯誤過帳爲依據here,我無法理解。希望有人告訴我這是如何工作的。
似乎是提升用戶的重複問題:http://lists.boost.org/boost-users/ 2005/09/14033.php和http://lists.boost.org/boost-users/2009/08/50755.php - 看起來不像是時間解決了。 – Cubbi 2011-04-19 18:34:36
@Cubbi是的,我也找到了。他放棄了使用捆綁的屬性來做這件事。 – 2011-04-21 22:45:27
這與您的問題無關,但我試圖弄清楚如何禁止平行邊緣,並且您的代碼示例給了我答案。多謝! – 2012-06-04 23:02:06