Build matrices for selected subproblems.
(self, subproblems=None, matrices=None)
| 123 | self.evaluator = Evaluator(self.dist, namespace) |
| 124 | |
| 125 | def build_matrices(self, subproblems=None, matrices=None): |
| 126 | """Build matrices for selected subproblems.""" |
| 127 | if subproblems is None: |
| 128 | subproblems = self.subproblems |
| 129 | if matrices is None: |
| 130 | matrices = self.matrices |
| 131 | subsystems.build_subproblem_matrices(self, subproblems, matrices) |
| 132 | |
| 133 | |
| 134 | class EigenvalueSolver(SolverBase): |
no outgoing calls
no test coverage detected