fix benchmarks

up to 20 recursive fibo
had mixed add and calls for rubyx
This commit is contained in:
2019-07-30 21:16:24 +03:00
parent 6273ab769c
commit 8eb0ba0d81
6 changed files with 36 additions and 38 deletions

View File

@ -10,9 +10,9 @@ int fibo_r(int n)
int main(void)
{
int counter = 100000;
int counter = 1000;
int fib ;
while(counter--) {
fib += fibo_r(10);
fib += fibo_r(20);
}
}