1
0
mirror of https://gitlab.com/scemama/qp_plugins_scemama.git synced 2024-10-05 07:45:59 +02:00
qp_plugins_scemama/devel/ccsd_gpu/ccsd_gpu.irp.f

19 lines
222 B
FortranFixed
Raw Normal View History

2023-07-16 09:54:58 +02:00
program ccsd
implicit none
BEGIN_DOC
! CCSD program
END_DOC
read_wf = .True.
touch read_wf
if (.not. cc_ref_is_open_shell) then
call run_ccsd_space_orb
else
stop 'Not implemented'
endif
end