mirror of
https://github.com/QuantumPackage/qp2.git
synced 2025-01-13 05:28:09 +01: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
|
||
|
|