(mat, freedofs, flags)
| 133 | |
| 134 | # for backward compatibility |
| 135 | def MakeGAMGPreconditioner(mat, freedofs, flags): |
| 136 | flags.Set("pc_type", "gamg") |
| 137 | return PETScPreconditioner(mat, freedofs, flags) |
| 138 | |
| 139 | RegisterPreconditioner ("gamg", MakeGAMGPreconditioner) |
| 140 |
nothing calls this directly
no test coverage detected