10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-02 11:25:26 +02:00
quantum_package/plugins/MP2/H_apply.irp.f

15 lines
271 B
Fortran
Raw Normal View History

2014-05-27 17:30:44 +02:00
use bitmasks
BEGIN_SHELL [ /usr/bin/env python ]
from generate_h_apply import *
from perturbation import perturbations
2014-06-06 16:19:14 +02:00
s = H_apply("mp2")
2014-05-27 17:30:44 +02:00
s.set_perturbation("Moller_plesset")
print s
2015-11-20 12:27:20 +01:00
s = H_apply("mp2_selection")
s.set_selection_pt2("Moller_Plesset")
2015-11-20 12:27:20 +01:00
print s
2014-05-27 17:30:44 +02:00
END_SHELL