ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
This is the abstract
derived type for creating objects of class modeln_type that contain the characteristics of the processor representation model used for the requested numeric data object.
More...
Public Attributes | |
integer(IK) | digits |
The scalar integer of default kind IK, whose value is the number of significant bit digits in the model that includes the numeric data type of interest, that is q or p in the integer and real models detailed in model_type.More... | |
integer(IK) | radix |
The scalar integer of default kind IK, whose value is the base in the model that includes the numeric data of interest, that is r or b in the integer and real models detailed in model_type.More... | |
integer(IK) | range |
The scalar integer of default kind IK, holding the equivalent decimal exponent range in the models representing integer or real data type of interest.The value is int(log10(huge)) for integer data type and int(min(log10(huge), -log10(tiny))) for real data type, where huge and tiny are the largest and smallest positive numbers in the corresponding model.More... | |
Public Attributes inherited from pm_kind::model_type | |
integer(IK) | kind |
The scalar integer of default kind IK, representing the processor-dependent kind type-parameter of data type of interest.More... | |
integer(IK) | storage_size |
The scalar integer of default kind IK, whose value is the size, in bits, that would be taken in memory by a scalar of the same type and kind as the data type of interest.More... | |
This is the abstract
derived type for creating objects of class modeln_type that contain the characteristics of the processor representation model used for the requested numeric data object.
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 1544 of file pm_kind.F90.
integer(IK) pm_kind::modeln_type::digits |
The scalar integer
of default kind IK, whose value is the number of significant bit digits in the model that includes the numeric data type of interest, that is q
or p
in the integer
and real
models detailed in model_type.
Definition at line 1545 of file pm_kind.F90.
integer(IK) pm_kind::modeln_type::radix |
The scalar integer
of default kind IK, whose value is the base in the model that includes the numeric data of interest, that is r
or b
in the integer
and real
models detailed in model_type.
Definition at line 1547 of file pm_kind.F90.
integer(IK) pm_kind::modeln_type::range |
The scalar integer
of default kind IK, holding the equivalent decimal exponent range in the models representing integer
or real
data type of interest.
The value is int(log10(huge))
for integer
data type and int(min(log10(huge), -log10(tiny)))
for real
data type, where huge
and tiny
are the largest and smallest positive numbers in the corresponding model.
Definition at line 1549 of file pm_kind.F90.