mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-07 06:33:53 +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
|