Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(sqrt_t), | intent(in) | :: | self | |||
real(kind=wp), | intent(in), | dimension(:) | :: | args |
function evalR_sqrt(self,args) result(o)
class(sqrt_t),intent(in)::self
real(wp),dimension(:),intent(in)::args
real(wp)::o
o = sqrt( self%a%eval(args) )
end function evalR_sqrt