summaryrefslogtreecommitdiffstats
path: root/Wrappers
diff options
context:
space:
mode:
Diffstat (limited to 'Wrappers')
-rwxr-xr-xWrappers/Python/ccpi/optimisation/funcs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Wrappers/Python/ccpi/optimisation/funcs.py b/Wrappers/Python/ccpi/optimisation/funcs.py
index db00e9f..2266560 100755
--- a/Wrappers/Python/ccpi/optimisation/funcs.py
+++ b/Wrappers/Python/ccpi/optimisation/funcs.py
@@ -38,7 +38,7 @@ def isSizeCorrect(data1 ,data2):
class Function(object):
def __init__(self):
- pass
+ self.L = None
def __call__(self,x, out=None): raise NotImplementedError
def grad(self, x): raise NotImplementedError
def prox(self, x, tau): raise NotImplementedError