10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-02 19:35:28 +02:00
quantum_package/plugins/mrcepa0/mrcepa0.irp.f
2016-04-07 17:54:13 +02:00

20 lines
409 B
Fortran

program mrcepa0
implicit none
double precision, allocatable :: energy(:)
allocate (energy(N_states))
!mrmode : 1=mrcepa0, 2=mrsc2 add, 3=mrsc2 sub
mrmode = 1
read_wf = .True.
SOFT_TOUCH read_wf
call print_cas_coefs
call set_generators_bitmasks_as_holes_and_particles
call run(N_states,energy)
if(do_pt2_end)then
call run_pt2(N_states,energy)
endif
deallocate(energy)
end