From 4da9797574ec9691f4033a33d9c89ff68f169624 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 30 Oct 2010 13:22:18 -0400 Subject: Remove debug print from polynomial.c. --- libdimension/polynomial.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'libdimension/polynomial.c') diff --git a/libdimension/polynomial.c b/libdimension/polynomial.c index 228dc53..7edd173 100644 --- a/libdimension/polynomial.c +++ b/libdimension/polynomial.c @@ -264,8 +264,6 @@ dmnsn_solve_polynomial(double poly[], size_t degree, double x[]) size_t i = 0; /* Index into x[] */ if (degree >= 3) { - dmnsn_print_polynomial(stdout, p, degree); - printf("\n"); /* Find isolating intervals for degree - 2 roots of p[] */ double ranges[degree - 2][2]; size_t n = dmnsn_uspensky_bounds(p, degree, ranges, degree - 2); -- cgit v1.2.3