#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/point_generators_2.h>
#include <CGAL/Reconstruction_simplification_2.h>
#include <fstream>
#include <iostream>
#include <vector>
typedef K::Point_2 Point;
int main ()
{
std::vector<Point> points;
CGAL::Random_points_on_square_2<Point> point_generator(1.);
Rs rs(points);
rs.run(100);
return 0;
}