program bisect
real(8) :: output
call bisection(3.d0,4.d0,2.d0,output)
print*, output
end program bisect
subroutine bisection(a,b,error,result)
real(8):: a,b,error,c,result
logical:: proceed
proceed = .true.
do while (proceed)
if (sin(a)*sin(b).lt. 0.d0) then
c=(a+b)/2
if (sin(a)*sin(c).lt.0.d0) then
b=c
else
a=c
end if
else
stop 'cannot be bisected'
end if
if (abs(a-b).lt. error) then
proceed = .false.
end if
end do
result= a
end subroutine bisection
此处上传了相同代码的版本。
这是我能想到的最小例子。这会在使用 gfortran 以及在网站上运行可执行文件时产生分段错误。