mirror of
https://gitlab.com/scemama/qp_plugins_scemama.git
synced 2025-01-03 18:15:58 +01:00
19 lines
222 B
FortranFixed
19 lines
222 B
FortranFixed
|
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
|