1
0
mirror of https://github.com/TREX-CoE/irpjast.git synced 2024-07-03 09:56:11 +02:00
irpjast/jastrow.irp.f

14 lines
280 B
FortranFixed
Raw Normal View History

2020-11-17 21:35:52 +01:00
program jastrow
implicit none
print *, 'The total Jastrow factor'
2020-11-26 16:12:33 +01:00
print *, jastrow_full
2021-01-23 15:34:36 +01:00
print *, 'REF'
print *, factor_een_deriv_e_ref
print *, 'X'
print *, factor_een_deriv_e
print *, 'BLAS'
print *, factor_een_deriv_e_blas
2021-01-04 16:45:32 +01:00
!PROVIDE jastrow_full
2020-11-17 21:35:52 +01:00
end program