132 |
self.__pde.setValue(D = 1.) |
self.__pde.setValue(D = 1.) |
133 |
return |
return |
134 |
|
|
|
def __del__(self): |
|
|
return |
|
|
|
|
135 |
def __call__(self, input_data): |
def __call__(self, input_data): |
136 |
""" |
""" |
137 |
Projects input_data onto a continuous function |
Projects input_data onto a continuous function |
417 |
@type verbose: C{bool} |
@type verbose: C{bool} |
418 |
@note: this method may be overwritten by a particular saddle point problem |
@note: this method may be overwritten by a particular saddle point problem |
419 |
""" |
""" |
420 |
|
if not isinstance(verbose,bool): |
421 |
|
raise TypeError("verbose needs to be of type bool.") |
422 |
self.__verbose=verbose |
self.__verbose=verbose |
423 |
self.relaxation=1. |
self.relaxation=1. |
424 |
|
|