summaryrefslogtreecommitdiffstats
path: root/libdimension/bench/polynomial.c
diff options
context:
space:
mode:
Diffstat (limited to 'libdimension/bench/polynomial.c')
-rw-r--r--libdimension/bench/polynomial.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libdimension/bench/polynomial.c b/libdimension/bench/polynomial.c
index b66648c..bf3d2b0 100644
--- a/libdimension/bench/polynomial.c
+++ b/libdimension/bench/polynomial.c
@@ -27,29 +27,29 @@ main(void)
#define NPOLY 5
double p[NPOLY][NPOLY + 1], x[NPOLY];
- /* p[0][] = x - 0.5; */
+ // p[0][] = x - 0.5;
p[0][1] = 1.0;
p[0][0] = -0.5;
- /* p[1][] = (x + 0.5)*(x - 0.5) */
+ // p[1][] = (x + 0.5)*(x - 0.5)
p[1][2] = 1.0;
p[1][1] = 0.0;
p[1][0] = -0.25;
- /* p[2][] = (x + 1)*(x - 1.2345)*(x - 100) */
+ // p[2][] = (x + 1)*(x - 1.2345)*(x - 100)
p[2][3] = 1.0;
p[2][2] = -100.2345;
p[2][1] = 22.2155;
p[2][0] = 123.45;
- /* p[3][] = (x + 1)*(x - 1.2345)*(x - 5)*(x - 100) */
+ // p[3][] = (x + 1)*(x - 1.2345)*(x - 5)*(x - 100)
p[3][4] = 1.0;
p[3][3] = -105.2345;
p[3][2] = 523.388;
p[3][1] = 12.3725;
p[3][0] = -617.25;
- /* p[4][] = (x + 1)*(x - 1.2345)*(x - 2.3456)*(x - 5)*(x - 100) */
+ // p[4][] = (x + 1)*(x - 1.2345)*(x - 2.3456)*(x - 5)*(x - 100)
p[4][5] = 1.0;
p[4][4] = -107.5801;
p[4][3] = 770.2260432;