mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
Merge pull request #15 from jakubjelinek/master
Fix computation of fibonacci numbers.
This commit is contained in:
commit
c65fe47427
@ -14,7 +14,7 @@ int a[N], b[N], c[N];
|
||||
#pragma omp declare simd inbranch
|
||||
int fib( int n )
|
||||
{
|
||||
if (n <= 2)
|
||||
if (n <= 1)
|
||||
return n;
|
||||
else {
|
||||
return fib(n-1) + fib(n-2);
|
||||
|
@ -21,7 +21,7 @@ program fibonacci
|
||||
end do
|
||||
|
||||
write(*,*) "Done a(", N-1, ") = ", a(N-1)
|
||||
! 44 1134903168
|
||||
! 44 701408733
|
||||
end program
|
||||
|
||||
recursive function fib(n) result(r)
|
||||
@ -29,7 +29,7 @@ recursive function fib(n) result(r)
|
||||
implicit none
|
||||
integer :: n, r
|
||||
|
||||
if (n <= 2) then
|
||||
if (n <= 1) then
|
||||
r = n
|
||||
else
|
||||
r = fib(n-1) + fib(n-2)
|
||||
|
Loading…
x
Reference in New Issue
Block a user