mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-08 15:13:48 +01:00
15 lines
236 B
Fortran
15 lines
236 B
Fortran
|
program casscf_new
|
||
|
implicit none
|
||
|
BEGIN_DOC
|
||
|
! TODO : Put the documentation of the program here
|
||
|
END_DOC
|
||
|
no_vvvv_integrals = .True.
|
||
|
SOFT_TOUCH no_vvvv_integrals
|
||
|
call run
|
||
|
end
|
||
|
|
||
|
subroutine run
|
||
|
implicit none
|
||
|
call run_cipsi
|
||
|
end
|