9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-26 06:22:04 +02:00

read complex orbitals

This commit is contained in:
Kevin Gasperich 2020-03-12 16:07:28 -05:00
parent 120e421239
commit 7be57b7a14

View File

@ -45,7 +45,11 @@ subroutine create_guess
END_DOC
logical :: exists
PROVIDE ezfio_filename
call ezfio_has_mo_basis_mo_coef(exists)
if (is_complex) then
call ezfio_has_mo_basis_mo_coef_complex(exists)
else
call ezfio_has_mo_basis_mo_coef(exists)
endif
if (.not.exists) then
if (mo_guess_type == "HCore") then
if (is_complex) then