summaryrefslogtreecommitdiff
path: root/test/c/integr.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/c/integr.c')
-rw-r--r--test/c/integr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/c/integr.c b/test/c/integr.c
index 25337dc..882325c 100644
--- a/test/c/integr.c
+++ b/test/c/integr.c
@@ -25,7 +25,7 @@ double test(int n)
int main(int argc, char ** argv)
{
int n; double r;
- if (argc >= 2) n = atoi(argv[1]); else n = 10000;
+ if (argc >= 2) n = atoi(argv[1]); else n = 10000000;
r = test(n);
printf("integr(square, 0.0, 1.0, %d) = %g\n", n, r);
return 0;