Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Module Procedures
private function not_same_scalar(scalar_1, scalar_2, reltol_in, abstol_in)
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=dp),
intent(in)
::
scalar_1
real(kind=dp),
intent(in)
::
scalar_2
real(kind=dp),
intent(in),
optional
::
reltol_in
real(kind=dp),
intent(in),
optional
::
abstol_in
Return Value
logical
private function not_same_array(array_1, array_2, reltol_in, abstol_in)
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=dp),
intent(in),
dimension(:)
::
array_1
real(kind=dp),
intent(in),
dimension(:)
::
array_2
real(kind=dp),
intent(in),
optional
::
reltol_in
real(kind=dp),
intent(in),
optional
::
abstol_in
Return Value
logical
private function not_same_matrix(matrix_1, matrix_2, reltol_in, abstol_in)