Base (abstract) solver classes.
Abstract eigenvalue solver class.
Abstract linear solver class.
Abstract nonlinear solver class.
Abstract optimization solver class.
Base class for all solver kinds. Takes care of processing of common configuration options.
The factory method any_from_conf() can be used to create an instance of any subclass.
The subclasses have to reimplement __init__() and __call__().
All solvers use the following configuration parameters:
Parameters: | name : str
kind : str
verbose : bool (default: False)
|
---|
Create an instance of a solver class according to the configuration.
Metaclass for solver classes that automatically adds configuration parameters to the solver class docstring from the _parameters class attribute.