mirror of
https://github.com/LCPQ/quantum_package
synced 2025-01-12 05:58:24 +01:00
12 lines
201 B
Fortran
12 lines
201 B
Fortran
program print_bitmask
|
|
implicit none
|
|
print*,'core'
|
|
call debug_det(core_bitmask,N_int)
|
|
print*,'inact'
|
|
call debug_det(inact_bitmask,N_int)
|
|
print*,'virt'
|
|
call debug_det(virt_bitmask,N_int)
|
|
|
|
|
|
end
|