ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
pm_kind::modeln_type Type Reference

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...

Inheritance diagram for pm_kind::modeln_type:
Collaboration diagram for pm_kind::modeln_type:

Public Attributes

integer(IKdigits
 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(IKradix
 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(IKrange
 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(IKkind
 The scalar integer of default kind IK, representing the processor-dependent kind type-parameter of data type of interest.
More...
 
integer(IKstorage_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...
 

Detailed Description

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

class(modeln_type), allocatable :: modelNum
class(model_type), allocatable :: model
modelNum = modelr_type(mold)
modelNum = modelb_type(mold)
modelNum = modeli_type(mold)
model = modelr_type(mold)
model = modelb_type(mold)
model = modeli_type(mold)
This module defines the relevant Fortran kind type-parameters frequently used in the ParaMonte librar...
Definition: pm_kind.F90:268
This is the abstract derived type for creating objects of class model_type that contain the character...
Definition: pm_kind.F90:1504
This is the abstract derived type for creating objects of class modelb_type that contain the characte...
Definition: pm_kind.F90:1680
This is the abstract derived type for creating objects of class modeli_type that contain the characte...
Definition: pm_kind.F90:1615
This is the abstract derived type for creating objects of class modeln_type that contain the characte...
Definition: pm_kind.F90:1544
This is the abstract derived type for creating objects of class modelr_type that contain the characte...
Definition: pm_kind.F90:1746
See also
model_type
modeln_type
modeli_type
modelb_type
modelr_type


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.

  1. If you use any parts or concepts from this library to any extent, please acknowledge the usage by citing the relevant publications of the ParaMonte library.
  2. If you regenerate any parts/ideas from this library in a programming environment other than those currently supported by this ParaMonte library (i.e., other than C, C++, Fortran, MATLAB, Python, R), please also ask the end users to cite this original ParaMonte library.

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.

Author:
Amir Shahmoradi, September 1, 2017, 11:35 PM, Institute for Computational Engineering and Sciences (ICES), The University of Texas at Austin

Definition at line 1544 of file pm_kind.F90.

Member Data Documentation

◆ digits

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.

◆ radix

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.

◆ range

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.


The documentation for this type was generated from the following file: