Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | expression |
function too_much_memory(expression)
integer,intent(in) :: expression
logical :: too_much_memory
! ident_35="@(#) too much memory required"
G_ERR=expression
if(G_ERR.gt.0)then
call mat_err(17)
too_much_memory=.true.
else
too_much_memory=.false.
endif
end function too_much_memory