matrix_multiply_method_get_flag Function

private elemental function matrix_multiply_method_get_flag(self) result(flag)

Helper routine to get access to the matrix_multiply_method's flag in a read-only way. Primarily used for testing.

Type Bound

matrix_multiply_method_type

Arguments

Type IntentOptional Attributes Name
class(matrix_multiply_method_type), intent(in) :: self

Return Value integer


Contents


Source Code

  elemental integer function matrix_multiply_method_get_flag(self) result(flag)
    implicit none
    class(matrix_multiply_method_type), intent(in) :: self
    flag = self%flag
  end function matrix_multiply_method_get_flag