mirror of
https://github.com/LCPQ/quantum_package
synced 2025-01-12 14:08:30 +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
|