9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-27 06:52:06 +02:00
qp2/src/cipsi/selection_types.f90

16 lines
379 B
Fortran
Raw Normal View History

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(:)
double precision, allocatable :: variance(:)
double precision, allocatable :: norm2(:)
endtype
2019-01-25 11:39:31 +01:00
end module