ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
This is the base type func_type
standing abstract
function type to generate a variety of function test functions.
More...
Public Member Functions | |
procedure(get_proc), deferred | get |
Public Attributes | |
real(RKH) | lb |
The scalar of type real of the highest kind supported by the processor RKH, containing the lower limit of function. More... | |
real(RKH) | ub |
The scalar of type real of the highest kind supported by the processor RKH, containing the upper limit of function. More... | |
real(RKH), dimension(:), allocatable | root |
The scalar of type real of the highest kind supported by the processor RKH, containing the true roots of function. More... | |
character(:, SK), allocatable | desc |
The scalar allocatable character of default kind SK containing a description of the function and function limits and difficulties. More... | |
This is the base type func_type
standing abstract
function type to generate a variety of function test functions.
The abstract type minimally contains the function limits and deferred type-bound procedure get()
.
It is primarily meant to be used internally within the ParaMonte library for testing and illustration purposes.
In particular, the implementations may not be ideal for benchmarks and performance tests of the library integrators.
Nevertheless, all relevant types and function test objects are public
in this repository and available to the end user.
Possible calling interfaces ⛓
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
Definition at line 85 of file pm_mathRootTest.F90.
procedure(get_proc), deferred pm_mathRootTest::func_type::get |
Definition at line 91 of file pm_mathRootTest.F90.
character(:, SK), allocatable pm_mathRootTest::func_type::desc |
The scalar allocatable
character of default kind SK containing a description of the function and function limits and difficulties.
Definition at line 89 of file pm_mathRootTest.F90.
real(RKH) pm_mathRootTest::func_type::lb |
The scalar of type real
of the highest kind supported by the processor RKH, containing the lower limit of function.
Definition at line 86 of file pm_mathRootTest.F90.
real(RKH), dimension(:), allocatable pm_mathRootTest::func_type::root |
The scalar of type real
of the highest kind supported by the processor RKH, containing the true roots of function.
Definition at line 88 of file pm_mathRootTest.F90.
real(RKH) pm_mathRootTest::func_type::ub |
The scalar of type real
of the highest kind supported by the processor RKH, containing the upper limit of function.
Definition at line 87 of file pm_mathRootTest.F90.