summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdoardo Pasca <edo.paskino@gmail.com>2019-04-01 16:33:10 +0100
committerEdoardo Pasca <edo.paskino@gmail.com>2019-04-01 16:33:10 +0100
commit7c82130aa8e28e31af56265186d22879d2436790 (patch)
treebe71ab5ddf1cba0674d646f75bf431fca7d9fb85
parentb12088bc999838c7c57e960639f9798acefc23c6 (diff)
downloadframework-7c82130aa8e28e31af56265186d22879d2436790.tar.gz
framework-7c82130aa8e28e31af56265186d22879d2436790.tar.bz2
framework-7c82130aa8e28e31af56265186d22879d2436790.tar.xz
framework-7c82130aa8e28e31af56265186d22879d2436790.zip
updated reference to ZeroFun
-rw-r--r--Wrappers/Python/ccpi/optimisation/algorithms/FBPD.py2
-rwxr-xr-xWrappers/Python/ccpi/optimisation/algorithms/FISTA.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Wrappers/Python/ccpi/optimisation/algorithms/FBPD.py b/Wrappers/Python/ccpi/optimisation/algorithms/FBPD.py
index 798fb61..445ba7a 100644
--- a/Wrappers/Python/ccpi/optimisation/algorithms/FBPD.py
+++ b/Wrappers/Python/ccpi/optimisation/algorithms/FBPD.py
@@ -23,7 +23,7 @@ Created on Thu Feb 21 11:09:03 2019
"""
from ccpi.optimisation.algorithms import Algorithm
-from ccpi.optimisation.funcs import ZeroFun
+from ccpi.optimisation.functions import ZeroFun
class FBPD(Algorithm):
'''FBPD Algorithm
diff --git a/Wrappers/Python/ccpi/optimisation/algorithms/FISTA.py b/Wrappers/Python/ccpi/optimisation/algorithms/FISTA.py
index bc4489e..93ba178 100755
--- a/Wrappers/Python/ccpi/optimisation/algorithms/FISTA.py
+++ b/Wrappers/Python/ccpi/optimisation/algorithms/FISTA.py
@@ -6,7 +6,7 @@ Created on Thu Feb 21 11:07:30 2019
"""
from ccpi.optimisation.algorithms import Algorithm
-from ccpi.optimisation.funcs import ZeroFun
+from ccpi.optimisation.functions import ZeroFun
import numpy
class FISTA(Algorithm):