diff --git a/Packages/Min_circle_2/web/Min_circle_2.aw b/Packages/Min_circle_2/web/Min_circle_2.aw index b671c5cef69..d166ff8c191 100644 --- a/Packages/Min_circle_2/web/Min_circle_2.aw +++ b/Packages/Min_circle_2/web/Min_circle_2.aw @@ -2,7 +2,7 @@ @! The CGAL Project @! Implementation: 2D Smallest Enclosing Circle @! ---------------------------------------------------------------------------- -@! file : web/Min_circle_2.aw +@! file : Library/web/Min_circle_2.aw @! author: Bernd Gärtner, Sven Schönherr (sven@inf.fu-berlin.de) @! $Id$ @! ============================================================================ @@ -298,11 +298,8 @@ method $\mc$ to compute $\mc(P)=\mc(P,\emptyset)$. copy( first, last, back_inserter( points)); // shuffle points at random - if ( randomize) { - long seed; - time( &seed); - srand( seed); - random_shuffle( points.begin(), points.end()); } + if ( randomize) + random_shuffle( points.begin(), points.end()); // link points for ( int i = 0; i < number_of_points(); ++i) { @@ -926,8 +923,6 @@ set is minimal only if the center lies properly inside the triangle. #include #endif #include - #include - #include // check macros // ------------ @@ -977,6 +972,12 @@ set is minimal only if the center lies properly inside the triangle. @ + // specializations + // --------------- + #if ( defined( CGAL_INTEGER_H) && defined( CGAL_HOMOGENEOUS_H)) + #include + #endif + #endif // CGAL_MIN_CIRLCE_2_H @