10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-08-14 16:48:32 +02:00
quantum_package/src/Davidson/diagonalize_restart_and_save_all_states.irp.f
Anthony Scemama ca973a1e92 Revert "Bugs to fix (#50)" (#51)
This reverts commit 94f01c0892.
2017-04-20 08:45:56 +02:00

17 lines
284 B
Fortran

program diag_and_save
implicit none
read_wf = .True.
touch read_wf
call routine
end
subroutine routine
implicit none
call diagonalize_CI
print*,'N_det = ',N_det
call save_wavefunction_general(N_det,N_states_diag,psi_det_sorted,size(psi_coef_sorted,1),psi_coef_sorted)
end