From 86e2be09bea09500a4247d413e6d221a65c95cd2 Mon Sep 17 00:00:00 2001 From: markgarnold <78613198+markgarnold@users.noreply.github.com> Date: Thu, 5 Dec 2024 09:32:50 -0500 Subject: [PATCH] Update testnpbufunc.py --- examples/testnpbufunc.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/testnpbufunc.py b/examples/testnpbufunc.py index c66b8bc..8cfdc25 100644 --- a/examples/testnpbufunc.py +++ b/examples/testnpbufunc.py @@ -35,5 +35,11 @@ def testinterpcotran(): print(str(res)+" cotran db only") res = testufunc(f,interp_cotran_ufunc.sbdb_ufunc_interpsbcotrdb) print(str(res)+" interp sb+cotran db") + res = testufunc(f,interp_cotran_ufunc.sbdb_ufunc_interpsbcotrdb_g2) + print(str(res)+" interp_g2 sb+cotran_g2 db") + res = testufunc(f,interp_cotran_ufunc.sbdb_ufunc_interpsbcotrdb_g4) + print(str(res)+" interp_g4 sb+cotran_g4 db") + res = testufunc(f,interp_cotran_ufunc.sbdb_ufunc_interpsbcotrdb_g6) + print(str(res)+" interp_g6 sb+cotran_g6 db") testinterpcotran()