MCPcopy Create free account
hub / github.com/chunleili/mgpbd / __init__

Method __init__

engine/solver/amg_python.py:10–19  ·  view source on GitHub ↗
(self, args, get_A0, should_setup, copy_A=True)

Source from the content-addressed store, hash-verified

8
9class 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):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected