mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-07 22:53:52 +01:00
17 lines
156 B
Fortran
17 lines
156 B
Fortran
|
! Prog
|
||
|
|
||
|
program ccsd
|
||
|
|
||
|
implicit none
|
||
|
|
||
|
BEGIN_DOC
|
||
|
! CCSD in spin orbitals
|
||
|
END_DOC
|
||
|
|
||
|
read_wf = .True.
|
||
|
touch read_wf
|
||
|
|
||
|
call run_ccsd_spin_orb
|
||
|
|
||
|
end
|