mirror of
https://gitlab.com/scemama/qp_plugins_scemama.git
synced 2024-11-07 14:43:41 +01:00
12 lines
170 B
Fortran
12 lines
170 B
Fortran
program CC
|
|
implicit none
|
|
BEGIN_DOC
|
|
! CC
|
|
! Coupled cluster
|
|
!
|
|
! This program perform coupled cluster calculation
|
|
! CCSD or CCSD(T)
|
|
END_DOC
|
|
call CCSD
|
|
end
|