Basic recursive solver class that does a brute-force search through some component values.
More...
Basic recursive solver class that does a brute-force search through some component values.
Definition at line 381 of file efind.py.
◆ __init__()
None efind.Solver.__init__ |
( |
|
self, |
|
|
Sequence[Component] |
components, |
|
|
Sequence[Output] |
outputs, |
|
|
Optional[float] |
threshold = 1e-3 |
|
) |
| |
- Parameters
-
components | A sequence of Component instances. The order of this sequence determines the order of parameters passed to Output.calculate and Component.calculate. |
outputs | A sequence of Output instances - can be empty. |
threshold | Maximum error above which solutions will be discarded. |
Definition at line 386 of file efind.py.
◆ print()
None efind.Solver.print |
( |
|
self, |
|
|
int |
top = 10 |
|
) |
| |
Print a table of all component values, output values and output error.
- Parameters
-
Definition at line 447 of file efind.py.
◆ solve()
None efind.Solver.solve |
( |
|
self | ) |
|
Recurse through all of the components, doing a brute-force search.
Results are stored in self.candidates and sorted in order of increasing error.
Definition at line 417 of file efind.py.
◆ outputs
◆ threshold
The documentation for this class was generated from the following file: