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.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
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.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Module Procedures
private pure subroutine gauss_legendre_1D(interval, degree, Xksi, Wksi)
Author
Seyed Ali Ghasemi
License
BSD 3-Clause
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=rk),
intent(in),
contiguous
::
interval(:)
integer,
intent(in)
::
degree
real(kind=rk),
intent(out),
allocatable
::
Xksi(:)
real(kind=rk),
intent(out),
allocatable
::
Wksi(:)
private pure subroutine gauss_legendre_2D(interval1, interval2, degree, Xksi, Wksi)
Author
Seyed Ali Ghasemi
License
BSD 3-Clause
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=rk),
intent(in),
contiguous
::
interval1(:)
real(kind=rk),
intent(in),
contiguous
::
interval2(:)
integer,
intent(in),
contiguous
::
degree(:)
real(kind=rk),
intent(out),
allocatable
::
Xksi(:,:)
real(kind=rk),
intent(out),
allocatable
::
Wksi(:)
private pure subroutine gauss_legendre_3D(interval1, interval2, interval3, degree, Xksi, Wksi)