10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-24 06:02:26 +02:00
QuantumPackage/src/hartree_fock/print_e_scf.irp.f
2020-07-29 14:04:16 -05:00

22 lines
277 B
Fortran

program print_e_scf
call run
end
subroutine run
use bitmasks
implicit none
!if (is_complex) then
! call print_debug_scf_complex
!endif
print*,'hf 1e,2e,total energy'
print*,hf_one_electron_energy
print*,hf_two_electron_energy
print*,hf_energy
end