diff --git a/pyfmmlib/version.py b/pyfmmlib/version.py index a0b428c42f2ebf49667fa8e7a9a48f643c23b915..f59a9b358a7783cd2c43a642962d6943747c10e5 100644 --- a/pyfmmlib/version.py +++ b/pyfmmlib/version.py @@ -1,3 +1,3 @@ -VERSION = (2015, 1) +VERSION = (2016, 1) VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS diff --git a/wrappers.pyf.mako b/wrappers.pyf.mako index 7e9902a81e74df08a31db4de6973e465ebb01baf..b29bcee069c00dbabd1c82bf9cc6a2aa799ef7e2 100644 --- a/wrappers.pyf.mako +++ b/wrappers.pyf.mako @@ -221,10 +221,28 @@ python module _internal complex *16, intent(in) :: mpole(0:nterms,-nterms:nterms) complex *16, intent(out) :: pot,fld(3),hess(6) integer, intent(out) :: ier - end subroutine + end subroutine l3dtaevalhess - ! }}} + ! {{{ term estimation + + subroutine l2dterms(eps,nterms,ier) + ! implicit real *8 (a-h,o-z) + real*8, intent(in) :: eps + integer, intent(out) :: nterms + integer, intent(out) :: ier + end subroutine l2dterms + + subroutine h2dterms(size,zk,eps,nterms,ier) + ! implicit real *8 (a-h,o-z) + real*8, intent(in) :: size + complex*16, intent(in) :: zk + real*8, intent(in) :: eps + integer, intent(out) :: nterms + integer, intent(out) :: ier + end subroutine h2dterms + ! }}} + ! {{{ generated vectorized wrappers ${gen_vector_wrappers()}