uncomment code in points.c
This commit is contained in:
parent
c200d74897
commit
2e3d2b43ee
@ -172,13 +172,13 @@ int main (int argc, char **argv) {
|
|||||||
|
|
||||||
if (divide) {
|
if (divide) {
|
||||||
start_algorithm("Divide and conquer corriendo... ", n);
|
start_algorithm("Divide and conquer corriendo... ", n);
|
||||||
//closest_points = divide_and_conquer(points, n, &dist);
|
closest_points = divide_and_conquer(points, n, &dist);
|
||||||
end_algorithm();
|
end_algorithm();
|
||||||
/*printf("point 1: x: %f y: %f\n", closest_points[0].x, closest_points[0].y);
|
printf("point 1: x: %f y: %f\n", closest_points[0].x, closest_points[0].y);
|
||||||
printf("point 2: x: %f y: %f\n", closest_points[1].x, closest_points[1].y);
|
printf("point 2: x: %f y: %f\n", closest_points[1].x, closest_points[1].y);
|
||||||
printf("distance: %lf\n", dist);
|
printf("distance: %lf\n", dist);
|
||||||
free(closest_points);
|
free(closest_points);
|
||||||
closest_points = NULL;*/
|
closest_points = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
free(points);
|
free(points);
|
||||||
|
Loading…
Reference in New Issue
Block a user