10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-29 16:34:50 +02:00

Restaure map_module.f90

This commit is contained in:
Thomas Applencourt 2017-01-19 16:29:50 -06:00 committed by GitHub
parent 6185049a20
commit 44ccc24e72

View File

@ -17,7 +17,6 @@ module map_module
! should be called before getting data from the map.
use omp_lib
use iso_fortran_env
integer, parameter :: integral_kind = 8
@ -28,11 +27,7 @@ module map_module
integer, parameter :: map_size_kind = 8
integer, parameter :: map_shift = -15
integer*8, parameter :: map_mask = ibset(0_8,15)-1_8
integer(kind=int16), parameter :: z_kind = 0
integer(kind=int16), parameter :: o_kind = 1
integer(kind=int16), parameter :: map_mask = ibset(z_kind,15)-o_kind
integer*8, parameter :: map_mask = ibset(0_8,15)-1_8
type cache_map_type
real(integral_kind), pointer :: value(:)
@ -50,13 +45,8 @@ integer*8, parameter :: map_mask = ibset(0_8,15)-1_8
integer*8, pointer :: consolidated_idx(:)
logical :: sorted
logical :: consolidated
integer(kind=map_size_kind) :: map_size
integer(kind=map_size_kind) :: n_elements
integer(kind=int16) :: map_size
integer(kind=int16) :: n_elements
integer(map_size_kind) :: map_size
integer(map_size_kind) :: n_elements
integer(omp_lock_kind) :: lock
end type map_type