mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-10-11 02:11:30 +02:00
10 lines
213 B
Fortran
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
|
|
|