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.
Functions
private pure function compute_Xg_bspline_1d(f_Xt, f_knot, f_degree, f_nc, f_ng, f_Xc) result(f_Xg)
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=rk),
intent(in),
contiguous
::
f_Xt(:)
real(kind=rk),
intent(in),
contiguous
::
f_knot(:)
integer,
intent(in)
::
f_degree
integer,
intent(in)
::
f_nc
integer,
intent(in)
::
f_ng
real(kind=rk),
intent(in),
contiguous
::
f_Xc(:,:)
Return Value
real(kind=rk), allocatable, (:,:)
private pure function compute_Xg_bspline_1d_1point(f_Xt, f_knot, f_degree, f_nc, f_Xc) result(f_Xg)
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=rk),
intent(in)
::
f_Xt
real(kind=rk),
intent(in),
contiguous
::
f_knot(:)
integer,
intent(in)
::
f_degree
integer,
intent(in)
::
f_nc
real(kind=rk),
intent(in),
contiguous
::
f_Xc(:,:)
Return Value
real(kind=rk), allocatable, (:)
private pure function compute_Xg_nurbs_1d(f_Xt, f_knot, f_degree, f_nc, f_ng, f_Xc, f_Wc) result(f_Xg)
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=rk),
intent(in),
contiguous
::
f_Xt(:)
real(kind=rk),
intent(in),
contiguous
::
f_knot(:)
integer,
intent(in)
::
f_degree
integer,
intent(in)
::
f_nc
integer,
intent(in)
::
f_ng
real(kind=rk),
intent(in),
contiguous
::
f_Xc(:,:)
real(kind=rk),
intent(in),
contiguous
::
f_Wc(:)
Return Value
real(kind=rk), allocatable, (:,:)
private pure function compute_Xg_nurbs_1d_1point(f_Xt, f_knot, f_degree, f_nc, f_Xc, f_Wc) result(f_Xg)