Build corresponding solver class.
(self, *args, **kw)
| 94 | return eqn |
| 95 | |
| 96 | def build_solver(self, *args, **kw): |
| 97 | """Build corresponding solver class.""" |
| 98 | return self.solver_class(self, *args, **kw) |
| 99 | |
| 100 | def _check_equation_conditions(self, eqn): |
| 101 | """Check equation conditions.""" |
no outgoing calls