betafun Function

private pure function betafun(self, pbar)

FIXME : Add documentation

Type Bound

leq_type

Arguments

Type IntentOptional Attributes Name
class(leq_type), intent(in) :: self
real, intent(in) :: pbar

Return Value real


Contents

Source Code


Source Code

  pure real function betafun (self, pbar)
    class(leq_type), intent(in) :: self
    real, intent(in) :: pbar
    UNUSED_DUMMY(pbar)
    betafun = self%beta_0
  end function betafun