9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-22 04:22:06 +02:00
qp2/src/cipsi/selection_types.f90
2019-01-25 11:39:31 +01:00

10 lines
213 B
Fortran

module selection_types
type selection_buffer
integer :: N, cur
integer(8) , pointer :: det(:,:,:)
double precision, pointer :: val(:)
double precision :: mini
endtype
end module