summaryrefslogtreecommitdiffstats
path: root/Wrappers
diff options
context:
space:
mode:
authorEdoardo Pasca <edo.paskino@gmail.com>2018-07-31 14:52:52 +0100
committerGitHub <noreply@github.com>2018-07-31 14:52:52 +0100
commit400e63f834f48b2e557e9cb1a71723d9253008a3 (patch)
treed389fb35be109f68be58629ba6e2a83559646bdc /Wrappers
parentc8a628773fa5fe281acd2c701dd96a9824f22713 (diff)
downloadframework-400e63f834f48b2e557e9cb1a71723d9253008a3.tar.gz
framework-400e63f834f48b2e557e9cb1a71723d9253008a3.tar.bz2
framework-400e63f834f48b2e557e9cb1a71723d9253008a3.tar.xz
framework-400e63f834f48b2e557e9cb1a71723d9253008a3.zip
added alias to prox and grad (#130)
Diffstat (limited to 'Wrappers')
-rwxr-xr-xWrappers/Python/ccpi/optimisation/funcs.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/Wrappers/Python/ccpi/optimisation/funcs.py b/Wrappers/Python/ccpi/optimisation/funcs.py
index f5463a3..90bc9e3 100755
--- a/Wrappers/Python/ccpi/optimisation/funcs.py
+++ b/Wrappers/Python/ccpi/optimisation/funcs.py
@@ -24,9 +24,11 @@ import numpy
class Function(object):
def __init__(self):
self.op = Identity()
- def __call__(self,x): return 0
- def grad(self,x): return 0
- def prox(self,x,tau): return x
+ def __call__(self,x): return 0
+ def grad(self, x): return 0
+ def prox(self, x, tau): return x
+ def gradient(self, x): return self.grad(x)
+ def proximal(self, x, tau): return self.prox(x, tau)
class Norm2(Function):