ddeabm_stop_integration Subroutine

private subroutine ddeabm_stop_integration(me)

Call this to abort the integration if there is an error. (Can be called in df by the user.) The step will be considered invalid and not returned.

Note

This will produce an idid = -1000 exit code from the integrator.

Type Bound

ddeabm_class

Arguments

Type IntentOptional Attributes Name
class(ddeabm_class), intent(inout) :: me

Source Code

   subroutine ddeabm_stop_integration(me)

      implicit none

      class(ddeabm_class), intent(inout) :: me

      me%error = .true.

   end subroutine ddeabm_stop_integration