>>> help(MyClass)
Help on class MyClass ...
class MyClass(object)
| A class with a CONFIG class attribute.
|
| **Class configuration**
|
| This class leverages the Pyomo Configuration System for managing
| configuration options. See the discussion on :ref:`configuring class
| hierarchies <class_config>` for more information on how configuration
| class attributes, instance attributes, and method keyword arguments
| interact.
|
| .. _MyClass::CONFIG:
|
| CONFIG
| ------
| iterlim: int, optional
|
| Solver iteration limit
|
| timeout: float, optional
|
| Solver (wall clock) time limit
|
| ...
>>> help(MyClass.solve)
Help on function solve:
solve(model, **kwargs)
Solve the specified model
Keyword Arguments
-----------------
iterlim: int, optional
Solver iteration limit
timeout: float, optional
Solver (wall clock) time limit