Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=dp), | intent(in) | :: | b | |||
real(kind=dp), | intent(in) | :: | x |
pure function funC(b, x) result(ret)
real(dp), intent(in) :: b, x
real(dp) :: ret
!ASSERT( (b + x) > 0.0_dp)
ret = funA(b, x - 1.0_dp, x) * funA(b, x + 1.0_dp, x)
end function funC