nrerror Subroutine

public subroutine nrerror(string)

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: string

Contents

Source Code


Source Code

	SUBROUTINE nrerror(string)
	CHARACTER(LEN=*), INTENT(IN) :: string
	write (*,*) 'nrerror: ',string
	STOP 'program terminated by nrerror'
	END SUBROUTINE nrerror