10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-21 04:32:14 +02:00
quantum_package/src/Determinants/options.irp.f

23 lines
517 B
Fortran
Raw Normal View History

2015-04-20 16:45:06 +02:00
BEGIN_PROVIDER [ integer, N_states_diag ]
implicit none
BEGIN_DOC
! Number of states to consider for the diagonalization
END_DOC
logical :: has
PROVIDE ezfio_filename
call ezfio_has_determinants_n_states_diag(has)
if (has) then
call ezfio_get_determinants_n_states_diag(N_states_diag)
else
N_states_diag = N_states
endif
call write_time(output_determinants)
call write_int(output_determinants, N_states_diag, &
'N_states_diag')
END_PROVIDER