diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-10-31 23:28:14 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-10-31 23:28:14 -0400 |
commit | 80388b952b5844261e711e8da5a59c34b4919da7 (patch) | |
tree | 22d7b414b392cea5003029e5360efb3b4b30c78f /tests | |
parent | 70ddf1e89aca531b5a2b4d71d2873c6883a61953 (diff) | |
download | dimension-80388b952b5844261e711e8da5a59c34b4919da7.tar.xz |
Numerical fixes for polynomial.c.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libdimension/polynomial.c | 2 |
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; |