(self, args, get_A0, should_setup, copy_A=True)
| 8 | |
| 9 | class AmgPython: |
| 10 | def __init__(self, args, get_A0, should_setup, copy_A=True): |
| 11 | self.args = args |
| 12 | self.get_A0 = get_A0 |
| 13 | self.should_setup = should_setup |
| 14 | self.copy_A = copy_A |
| 15 | |
| 16 | self.Ps = None |
| 17 | self.num_levels = None |
| 18 | self.jacobi_omega = None |
| 19 | self.chebyshev_coeff = None |
| 20 | |
| 21 | |
| 22 | def run(self, b): |
nothing calls this directly
no outgoing calls
no test coverage detected