Bases: object
Base class for optimizers.
| Parameters: | opt_method : callable 
 | 
|---|
Notes
The base Optimizer does not support any constraints by default; individual optimizers should explicitly set this list to the specific constraints it supports.
Attributes Summary
| acc | Requested accuracy | 
| eps | Step for the forward difference approximation of the Jacobian | 
| maxiter | Maximum number of iterations | 
| opt_method | |
| supported_constraints | list() -> new empty list | 
Methods Summary
| __call__() | 
Attributes Documentation
Requested accuracy
Step for the forward difference approximation of the Jacobian
Maximum number of iterations
Methods Documentation