| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | msg | |||
| character(len=*), | intent(in) | :: | file | |||
| integer, | intent(in) | :: | line |
! => CALL GVEC abort instead |
subroutine sll_s_assertion( msg, file, line ) use MODgvec_globals, only: abort character(len=*), intent(in) :: msg character(len=*), intent(in) :: file integer , intent(in) :: line !write(*,*) !write(*,'(a)' ) "ASSERTION FAILURE: condition ( " // trim(msg) // " ) is not satisfied." !write(*,'(a,i0)') 'Triggered at '// file //':', line ! !call c_abort() !!! => CALL GVEC abort instead CALL abort(__STAMP__,& "SLL ASSERTION FAILURE: condition ( " // trim(msg) // " ) is not satisfied.") end subroutine sll_s_assertion