From b28bfabffbb1725b8d67d0a5ab2069415cae141e Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Wed, 10 Aug 2016 15:26:26 -0500 Subject: [PATCH 1/2] Add wrappers for h2dterms, l2dterms. --- wrappers.pyf.mako | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/wrappers.pyf.mako b/wrappers.pyf.mako index 7e9902a..b29bcee 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()} -- GitLab From 61b6309288a1c1f59ea015fb23f21ade0345f018 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Wed, 10 Aug 2016 16:06:10 -0500 Subject: [PATCH 2/2] Bump version. --- pyfmmlib/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfmmlib/version.py b/pyfmmlib/version.py index a0b428c..f59a9b3 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 -- GitLab