mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-10-09 01:17:19 +02: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
|