| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(c_ptr), | value | :: | c_pt | |||
| real(kind=dp), | value | :: | B | |||
| real(kind=dp), | value | :: | I |
function strain_not_implemented(c_pt,B,I) result(ret_val) bind(C) type(c_ptr), value :: c_pt real(dp), value :: B,I real(dp) :: ret_val ret_val=0.0_dp if(.false.) print*,c_associated(c_pt),B,I error stop 'strain - not implemented' end function strain_not_implemented