Construct_sfp64Stack Subroutine

public subroutine Construct_sfp64Stack(stack, N)

Arguments

TypeIntentOptionalAttributesName
class(sfp64Stack), intent(out) :: stack
integer, intent(in) :: N

Contents

Source Code


Source Code

  subroutine Construct_sfp64Stack(stack,N)
    class(sfp64Stack),intent(out) :: stack
    integer,intent(in)            :: N

    allocate(stack%tokens(1:N))
    stack%top_index = 0

  endsubroutine Construct_sfp64Stack