finter_type Derived Type

type, public :: finter_type


Components

Type Visibility Attributes Name Initial
real(kind=8), public, allocatable :: X(:)
real(kind=8), public, allocatable :: F(:)
real(kind=8), public, allocatable :: G(:)
integer, public :: Imin
integer, public :: Imax
integer, public :: N
logical, public :: status = .false.

Source Code

    type finter_type
       real(8),allocatable    :: X(:)
       real(8),allocatable    :: F(:)
       real(8),allocatable    :: G(:)
       integer                :: Imin,Imax,N
       logical                :: status=.false.
    end type finter_type