diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2019-04-01 16:33:10 +0100 |
---|---|---|
committer | Edoardo Pasca <edo.paskino@gmail.com> | 2019-04-01 16:33:10 +0100 |
commit | 7c82130aa8e28e31af56265186d22879d2436790 (patch) | |
tree | be71ab5ddf1cba0674d646f75bf431fca7d9fb85 | |
parent | b12088bc999838c7c57e960639f9798acefc23c6 (diff) | |
download | framework-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.py | 2 | ||||
-rwxr-xr-x | Wrappers/Python/ccpi/optimisation/algorithms/FISTA.py | 2 |
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): |