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