Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(test_t), | intent(in) | :: | self | |||
real(kind=wp), | intent(in) | :: | x |
function eval_test(self,x) result(o)
class(test_t),intent(in)::self
real(wp),intent(in)::x
real(wp)::o
o = x**2-self%b
end function eval_test