9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2025-01-24 02:21:39 +01:00
2019-02-21 10:05:57 +01:00

16 lines
455 B
Fortran

BEGIN_PROVIDER[double precision, energy_x_new_functional, (N_states) ]
&BEGIN_PROVIDER[double precision, energy_c_new_functional, (N_states) ]
implicit none
BEGIN_DOC
! energy_x_new_functional = define here your functional
! energy_c_new_functional = define here your functional
END_DOC
energy_x_new_functional = 0.d0 ! replace by your new provider
energy_c_new_functional = 0.d0 ! replace by your new provider
END_PROVIDER