mirror of
https://github.com/boostorg/graph_parallel.git
synced 2026-01-27 06:52:11 +00:00
Applied r55027 from trunk, except cycle_ratio_example.cpp which was already fixed
[SVN r55045]
This commit is contained in:
@@ -360,7 +360,7 @@ void test_csr(const ProcessGroup& pg, RandomGenerator& gen, Distribution& distri
|
||||
seqGraph;
|
||||
|
||||
seqGraph sg(edges_are_sorted,
|
||||
sorted_rmat_iterator<RandomGenerator, seqGraph>(gen, N, M, a, b, c, d),
|
||||
sorted_rmat_iterator<RandomGenerator, seqGraph>(gen, N, M, a, b, c, d),
|
||||
sorted_rmat_iterator<RandomGenerator, seqGraph>(),
|
||||
make_generator_iterator(gen, uniform_int<int>(1, C)),
|
||||
N);
|
||||
@@ -396,7 +396,7 @@ void test_csr(const ProcessGroup& pg, RandomGenerator& gen, Distribution& distri
|
||||
seqGraph;
|
||||
|
||||
seqGraph sg(edges_are_sorted,
|
||||
sorted_unique_rmat_iterator<RandomGenerator, seqGraph>(gen, N, M, a, b, c, d),
|
||||
sorted_unique_rmat_iterator<RandomGenerator, seqGraph>(gen, N, M, a, b, c, d),
|
||||
sorted_unique_rmat_iterator<RandomGenerator, seqGraph>(),
|
||||
make_generator_iterator(gen, uniform_int<int>(1, C)),
|
||||
N);
|
||||
@@ -431,7 +431,7 @@ void test_csr(const ProcessGroup& pg, RandomGenerator& gen, Distribution& distri
|
||||
seqGraph;
|
||||
|
||||
seqGraph sg(edges_are_sorted,
|
||||
sorted_erdos_renyi_iterator<RandomGenerator, seqGraph>(gen, N, _p/2),
|
||||
sorted_erdos_renyi_iterator<RandomGenerator, seqGraph>(gen, N, _p/2),
|
||||
sorted_erdos_renyi_iterator<RandomGenerator, seqGraph>(),
|
||||
make_generator_iterator(gen, uniform_int<int>(1, C)),
|
||||
N);
|
||||
@@ -467,7 +467,7 @@ void test_csr(const ProcessGroup& pg, RandomGenerator& gen, Distribution& distri
|
||||
seqGraph;
|
||||
|
||||
seqGraph sg(edges_are_sorted,
|
||||
small_world_iterator<RandomGenerator, seqGraph>(gen, N, k, p),
|
||||
small_world_iterator<RandomGenerator, seqGraph>(gen, N, k, p),
|
||||
small_world_iterator<RandomGenerator, seqGraph>(),
|
||||
make_generator_iterator(gen, uniform_int<int>(1, C)),
|
||||
N);
|
||||
|
||||
Reference in New Issue
Block a user