diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2019-03-14 14:51:47 +0000 |
---|---|---|
committer | Edoardo Pasca <edo.paskino@gmail.com> | 2019-03-14 14:51:47 +0000 |
commit | 53689e374625441867c6169829b1ee9b167547f4 (patch) | |
tree | 056a1985f5ef359e77dfd725d59a8d58fcd35d26 /Wrappers/Python | |
parent | 2bc9cce049c6ae588562ac88e089553a3dcc6d19 (diff) | |
download | framework-53689e374625441867c6169829b1ee9b167547f4.tar.gz framework-53689e374625441867c6169829b1ee9b167547f4.tar.bz2 framework-53689e374625441867c6169829b1ee9b167547f4.tar.xz framework-53689e374625441867c6169829b1ee9b167547f4.zip |
added Function.py
Diffstat (limited to 'Wrappers/Python')
-rwxr-xr-x | Wrappers/Python/ccpi/optimisation/functions/Function.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Wrappers/Python/ccpi/optimisation/functions/Function.py b/Wrappers/Python/ccpi/optimisation/functions/Function.py index 43ce900..27a5f01 100755 --- a/Wrappers/Python/ccpi/optimisation/functions/Function.py +++ b/Wrappers/Python/ccpi/optimisation/functions/Function.py @@ -22,7 +22,9 @@ import warnings class Function(object):
'''Abstract class representing a function
-
+ Members:
+ L is the Lipschitz constant of the gradient of the Function
+ alpha is scaling parameter of the function.
'''
def __init__(self):
self.L = None
|