| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| real(kind=real64), | public, | allocatable | :: | dif(:) | |||
| integer(kind=int32), | public | :: | length | ||||
| real(kind=real64), | public, | allocatable | :: | new(:) | |||
| real(kind=real64), | public, | allocatable | :: | old(:,:) | |||
| real(kind=real64), | public, | allocatable | :: | pre(:) | |||
| integer(kind=int32), | public | :: | rank |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(type_variable), | intent(inout) | :: | self | |||
| integer(kind=int32), | intent(in) | :: | length | |||
| integer(kind=int32), | intent(in) | :: | rank |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(type_variable), | intent(inout) | :: | self | |||
| real(kind=real64), | intent(in) | :: | value(:) |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(type_variable), | intent(inout) | :: | self | |||
| logical, | intent(in), | optional | :: | reverse |
type :: type_variable integer(int32) :: rank !& integer(int32) :: length !& real(real64), allocatable :: new(:) !& real(real64), allocatable :: pre(:) !& real(real64), allocatable :: old(:, :) !& real(real64), allocatable :: dif(:) !& contains procedure, pass(self) :: initialize => initialize_type_variable !& procedure, pass(self) :: shift => type_variable_shift !& procedure, pass(self) :: set => type_variable_set !& end type type_variable