| 3578 | shared_ptr<BaseMatrix> premat; |
| 3579 | public: |
| 3580 | PythonPreconditioner (shared_ptr<BilinearForm> bfa, const Flags & flags, |
| 3581 | py::object acreator) |
| 3582 | : Preconditioner(bfa, flags), creator(acreator) |
| 3583 | { |
| 3584 | if (bfa->GetMatrixPtr()) |
| 3585 | Update(); |
| 3586 | } |
| 3587 | void InitLevel (shared_ptr<BitArray> afreedofs) override |
| 3588 | { freedofs = afreedofs; } |
| 3589 | void FinalizeLevel (const ngla::BaseMatrix * amat) override |
nothing calls this directly
no test coverage detected