! ! Copyright (C) 2024 INTW group ! ! This file is part of INTW. ! ! INTW is free software: you can redistribute it and/or modify ! it under the terms of the GNU General Public License as published by ! the Free Software Foundation, either version 3 of the License, or ! (at your option) any later version. ! ! INTW is distributed in the hope that it will be useful, ! but WITHOUT ANY WARRANTY; without even the implied warranty of ! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! GNU General Public License for more details. ! ! You should have received a copy of the GNU General Public License ! along with this program. If not, see <https://www.gnu.org/licenses/>. ! module kinds !! display: none !! !! This module defines kind parameters for specifying the precision !! of real and integer variables. !! implicit none INTEGER, PARAMETER :: DP = selected_real_kind(14,200) INTEGER, PARAMETER :: sgl = selected_real_kind(6,30) INTEGER, PARAMETER :: SP = sgl INTEGER, PARAMETER :: i4b = selected_int_kind(9) end module kinds