Push_r3fp64Stack Subroutine

public subroutine Push_r3fp64Stack(stack, tok)

Arguments

TypeIntentOptionalAttributesName
class(r3fp64Stack), intent(inout) :: stack
real(kind=real64), intent(in) :: tok(:,:,:)

Contents

Source Code


Source Code

  subroutine Push_r3fp64Stack(stack,tok)
    class(r3fp64Stack),intent(inout) :: stack
    real(real64),intent(in)          :: tok(:,:,:)

    stack%top_index = stack%top_index+1
    stack%tokens(:,:,:,stack%top_index) = tok(:,:,:)

  endsubroutine Push_r3fp64Stack