$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r61748 - trunk/libs/graph/test
From: jewillco_at_[hidden]
Date: 2010-05-03 16:40:48
Author: jewillco
Date: 2010-05-03 16:40:48 EDT (Mon, 03 May 2010)
New Revision: 61748
URL: http://svn.boost.org/trac/boost/changeset/61748
Log:
Disambiguated RNG
Text files modified:
trunk/libs/graph/test/metric_tsp_approx.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/graph/test/metric_tsp_approx.cpp
==============================================================================
--- trunk/libs/graph/test/metric_tsp_approx.cpp (original)
+++ trunk/libs/graph/test/metric_tsp_approx.cpp 2010-05-03 16:40:48 EDT (Mon, 03 May 2010)
@@ -93,7 +93,7 @@
boost::mt19937 rng(time(0));
uniform_real<> range(0.01, (numpts * 2));
- variate_generator<mt19937&, uniform_real<> >
+ variate_generator<boost::mt19937&, uniform_real<> >
pnt_gen(rng, range);
PointSet points;