summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python/src
diff options
context:
space:
mode:
authoralgol <dkazanc@hotmail.com>2018-05-04 09:38:13 +0100
committeralgol <dkazanc@hotmail.com>2018-05-04 09:38:13 +0100
commit824fafc9d39bfd3a27ffdb29c37f873e6097c3f7 (patch)
treefd791ddf3e6364b7f568341ca39ce973748c1d2d /Wrappers/Python/src
parent66b101901f29776486009d165221d03a57316a0e (diff)
downloadregularization-824fafc9d39bfd3a27ffdb29c37f873e6097c3f7.tar.gz
regularization-824fafc9d39bfd3a27ffdb29c37f873e6097c3f7.tar.bz2
regularization-824fafc9d39bfd3a27ffdb29c37f873e6097c3f7.tar.xz
regularization-824fafc9d39bfd3a27ffdb29c37f873e6097c3f7.zip
demos for Diff4thO
Diffstat (limited to 'Wrappers/Python/src')
-rw-r--r--Wrappers/Python/src/cpu_regularisers.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Wrappers/Python/src/cpu_regularisers.pyx b/Wrappers/Python/src/cpu_regularisers.pyx
index 7dc3396..549b046 100644
--- a/Wrappers/Python/src/cpu_regularisers.pyx
+++ b/Wrappers/Python/src/cpu_regularisers.pyx
@@ -328,9 +328,9 @@ def NDF_3D(np.ndarray[np.float32_t, ndim=3, mode="c"] inputData,
#****************************************************************#
def Diff4th_CPU(inputData, regularisation_parameter, edge_parameter, iterationsNumb, time_marching_parameter):
if inputData.ndim == 2:
- return Diff4th_2D(inputData, regularisation_parameter, edge_parameter, iterationsNumb, time_marching_parameter, penalty_type)
+ return Diff4th_2D(inputData, regularisation_parameter, edge_parameter, iterationsNumb, time_marching_parameter)
elif inputData.ndim == 3:
- return Diff4th_3D(inputData, regularisation_parameter, edge_parameter, iterationsNumb, time_marching_parameter, penalty_type)
+ return Diff4th_3D(inputData, regularisation_parameter, edge_parameter, iterationsNumb, time_marching_parameter)
def Diff4th_2D(np.ndarray[np.float32_t, ndim=2, mode="c"] inputData,
float regularisation_parameter,