10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-08-15 16:58:29 +02:00
QuantumPackage/src/casscf/casscf.irp.f

17 lines
253 B
Fortran
Raw Normal View History

2019-06-24 16:42:16 +02:00
program casscf
2019-06-24 15:32:26 +02:00
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
2019-06-24 16:42:16 +02:00
call driver_wdens
2019-06-24 15:32:26 +02:00
end