From 2ba00eb6852d8f0bb96faff2ed5074f6027cdecc Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 29 Jan 2010 08:24:22 +0000 Subject: [PATCH] Default constructed boost::rand48 is good enough --- .../Apollonius_graph_2/Apollonius_graph_hierarchy_2_impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Apollonius_graph_2/include/CGAL/Apollonius_graph_2/Apollonius_graph_hierarchy_2_impl.h b/Apollonius_graph_2/include/CGAL/Apollonius_graph_2/Apollonius_graph_hierarchy_2_impl.h index 085d4b72800..cba22cb7801 100644 --- a/Apollonius_graph_2/include/CGAL/Apollonius_graph_2/Apollonius_graph_hierarchy_2_impl.h +++ b/Apollonius_graph_2/include/CGAL/Apollonius_graph_2/Apollonius_graph_hierarchy_2_impl.h @@ -40,7 +40,7 @@ init_hierarchy(const Geom_traits& gt) template Apollonius_graph_hierarchy_2:: Apollonius_graph_hierarchy_2(const Geom_traits& gt) - : Apollonius_graph_base(gt), random((long)0) + : Apollonius_graph_base(gt) { init_hierarchy(gt); } @@ -51,7 +51,7 @@ template Apollonius_graph_hierarchy_2:: Apollonius_graph_hierarchy_2 (const Apollonius_graph_hierarchy_2& agh) - : Apollonius_graph_base(agh.geom_traits()), random((long)0) + : Apollonius_graph_base(agh.geom_traits()) { init_hierarchy(agh.geom_traits()); copy(agh);