updating benchmarks

on the new machine, consistent
not rubyx yet
This commit is contained in:
2019-07-23 20:14:28 +03:00
parent 861fa3203f
commit 00bf38a0e6
17 changed files with 47 additions and 56 deletions

View File

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