rys_root_t Derived Type

type, public :: rys_root_t


Components

Type Visibility Attributes Name Initial
integer, public :: nroots = -1
real(kind=dp), public :: X
real(kind=dp), public :: U(mxrys)
real(kind=dp), public :: W(mxrys)

Type-Bound Procedures

procedure, public :: evaluate_testing

  • private subroutine evaluate_testing(this)

    Arguments

    Type IntentOptional Attributes Name
    class(rys_root_t), intent(inout) :: this

procedure, public :: evaluate

  • private subroutine evaluate(this)

    Arguments

    Type IntentOptional Attributes Name
    class(rys_root_t), intent(inout) :: this

Source Code

  type rys_root_t
    integer :: nroots = -1
    real(dp) :: X
    real(dp) :: U(mxrys), W(mxrys)
  contains
    procedure, public :: evaluate, evaluate_testing
  end type rys_root_t