2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-26 16:52:12 +00:00

Applied changes r58876, r59133, r59134, r59628, r60078, r60079, r60126, r60127, r60196, r60197, r60198, r60365, r60366, r60384, r60385, r60472, r60485, r60610, r60611, r60651, r60769, r60770, r60899, r60900, r60916, r60919, r60920, r60958, r60998, r60999, r61000 from trunk, except for changes to <boost/detail/algorithm.hpp> which are waiting for Boost.Range algorithms to be merged; added find_if to <boost/detail/algorithm.hpp>

[SVN r61001]
This commit is contained in:
Jeremiah Willcock
2010-04-02 15:25:11 +00:00
parent afab978e75
commit 7b548b372f
64 changed files with 1898 additions and 297 deletions

View File

@@ -92,8 +92,8 @@ void testScalability(unsigned numpts)
typedef vector< Vertex > Container;
mt19937 rng(time(0));
uniform_int<> range(0.01, (numpts * 2));
variate_generator<mt19937&, uniform_int<> >
uniform_real<> range(0.01, (numpts * 2));
variate_generator<mt19937&, uniform_real<> >
pnt_gen(rng, range);
PointSet points;