summaryrefslogtreecommitdiffstats
path: root/libdimension/dimension
diff options
context:
space:
mode:
Diffstat (limited to 'libdimension/dimension')
-rw-r--r--libdimension/dimension/polynomial.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdimension/dimension/polynomial.h b/libdimension/dimension/polynomial.h
index 52a44dd..f7d4517 100644
--- a/libdimension/dimension/polynomial.h
+++ b/libdimension/dimension/polynomial.h
@@ -41,8 +41,8 @@ dmnsn_evaluate_polynomial(double poly[], size_t degree, double x)
return ret;
}
-/* Stores the non-negative roots of poly[] in x[], and returns the number of
- such roots that were stored */
+/* Stores the positive roots of poly[] in x[], and returns the number of such
+ roots that were stored */
size_t dmnsn_solve_polynomial(double poly[], size_t degree, double x[]);
/* Helper function to print a polynomial */