kind_module.f90 Source File


Files dependent on this one

sourcefile~~kind_module.f90~~AfferentGraph sourcefile~kind_module.f90 kind_module.f90 sourcefile~bobyqa.f90 bobyqa.f90 sourcefile~bobyqa.f90->sourcefile~kind_module.f90 sourcefile~cobyla.f90 cobyla.f90 sourcefile~cobyla.f90->sourcefile~kind_module.f90 sourcefile~lincoa.f90 lincoa.f90 sourcefile~lincoa.f90->sourcefile~kind_module.f90 sourcefile~newuoa.f90 newuoa.f90 sourcefile~newuoa.f90->sourcefile~kind_module.f90 sourcefile~uobyqa.f90 uobyqa.f90 sourcefile~uobyqa.f90->sourcefile~kind_module.f90 sourcefile~powellopt.f90 powellopt.f90 sourcefile~powellopt.f90->sourcefile~bobyqa.f90 sourcefile~powellopt.f90->sourcefile~cobyla.f90 sourcefile~powellopt.f90->sourcefile~lincoa.f90 sourcefile~powellopt.f90->sourcefile~newuoa.f90 sourcefile~powellopt.f90->sourcefile~uobyqa.f90

Source Code

!*****************************************************************************************
!> author: Jacob Williams
!
!  Kind definitions for the other modules.

    module kind_module

    use iso_fortran_env

    implicit none

    private

    ! default real precision:

    !integer,parameter,public :: wp = real32   !! single precision
    integer,parameter,public :: wp = real64    !! double precision [default]
    !integer,parameter,public :: wp = real128  !! quad precision

    end module kind_module
!*****************************************************************************************