libsim Versione 7.1.11
|
◆ int_ll
8-byte integer (long long) if supported, otherwise 4-byte integer Definizione alla linea 260 del file kinds.F90. 260! Copyright (C) 2010 ARPA-SIM <urpsim@smr.arpa.emr.it>
261! authors:
262! Davide Cesari <dcesari@arpa.emr.it>
263! Paolo Patruno <ppatruno@arpa.emr.it>
264
265! This program is free software; you can redistribute it and/or
266! modify it under the terms of the GNU General Public License as
267! published by the Free Software Foundation; either version 2 of
268! the License, or (at your option) any later version.
269
270! This program is distributed in the hope that it will be useful,
271! but WITHOUT ANY WARRANTY; without even the implied warranty of
272! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
273! GNU General Public License for more details.
274
275! You should have received a copy of the GNU General Public License
276! along with this program. If not, see <http://www.gnu.org/licenses/>.
277#include "config.h"
278
288
317IMPLICIT NONE
318
319INTEGER, PARAMETER :: int_b = selected_int_kind(1)
320INTEGER, PARAMETER :: int_s = selected_int_kind(4)
321INTEGER, PARAMETER :: int_l = selected_int_kind(8)
322INTEGER, PARAMETER, PRIVATE :: &
323 int_ll_t = selected_int_kind(16)
325INTEGER, PARAMETER :: int_ll = &
326 ( ( ( 1 + sign( 1, int_ll_t ) ) / 2 ) * int_ll_t ) + &
327 ( ( ( 1 - sign( 1, int_ll_t ) ) / 2 ) * int_l )
328
329INTEGER, PARAMETER :: fp_s = selected_real_kind(6)
330INTEGER, PARAMETER :: fp_d = selected_real_kind(15)
331INTEGER, PARAMETER, PRIVATE :: fp_q_t = selected_real_kind(20)
333INTEGER, PARAMETER :: fp_q = &
334 ( ( ( 1 + sign( 1, fp_q_t ) ) / 2 ) * fp_q_t ) + &
335 ( ( ( 1 - sign( 1, fp_q_t ) ) / 2 ) * fp_d )
336
337INTEGER, PARAMETER :: ptr_c = sizeof_ptr_c
338
Definition of constants to be used for declaring variables of a desired type. Definition: kinds.F90:251 |