2019-01-25 11:39:31 +01:00
|
|
|
module selection_types
|
|
|
|
type selection_buffer
|
|
|
|
integer :: N, cur
|
|
|
|
integer(8) , pointer :: det(:,:,:)
|
|
|
|
double precision, pointer :: val(:)
|
|
|
|
double precision :: mini
|
|
|
|
endtype
|
2020-08-28 00:10:46 +02:00
|
|
|
|
|
|
|
type pt2_type
|
|
|
|
double precision, allocatable :: pt2(:)
|
2020-08-28 15:39:01 +02:00
|
|
|
double precision, allocatable :: rpt2(:)
|
2020-08-28 00:10:46 +02:00
|
|
|
double precision, allocatable :: variance(:)
|
2020-08-28 15:39:01 +02:00
|
|
|
double precision, allocatable :: overlap(:,:)
|
2020-08-28 00:10:46 +02:00
|
|
|
endtype
|
2020-08-28 15:39:01 +02:00
|
|
|
|
2020-08-29 01:15:48 +02:00
|
|
|
contains
|
|
|
|
|
|
|
|
integer function pt2_type_size(N)
|
|
|
|
implicit none
|
|
|
|
integer, intent(in) :: N
|
2020-08-31 22:39:40 +02:00
|
|
|
pt2_type_size = (3*n + n*n)
|
2020-08-29 01:15:48 +02:00
|
|
|
end function
|
2020-08-28 15:39:01 +02:00
|
|
|
|
2019-01-25 11:39:31 +01:00
|
|
|
end module
|
|
|
|
|