summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-10-31 23:28:14 -0400
committerTavian Barnes <tavianator@gmail.com>2010-10-31 23:28:14 -0400
commit80388b952b5844261e711e8da5a59c34b4919da7 (patch)
tree22d7b414b392cea5003029e5360efb3b4b30c78f /tests
parent70ddf1e89aca531b5a2b4d71d2873c6883a61953 (diff)
downloaddimension-80388b952b5844261e711e8da5a59c34b4919da7.tar.xz
Numerical fixes for polynomial.c.
Diffstat (limited to 'tests')
-rw-r--r--tests/libdimension/polynomial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libdimension/polynomial.c b/tests/libdimension/polynomial.c
index 230a1a7..8c6b4da 100644
--- a/tests/libdimension/polynomial.c
+++ b/tests/libdimension/polynomial.c
@@ -29,7 +29,7 @@ int
main()
{
double poly[6], x[5];
- // poly[] = (x + 1)*(x - 1.2345)*(x - 2.3456)*(x - 5)*(x - 100)
+ /* poly[] = (x + 1)*(x - 1.2345)*(x - 2.3456)*(x - 5)*(x - 100) */
poly[5] = 1.0;
poly[4] = -107.5801;
poly[3] = 770.2260432;