(self, *args, pre2 : Preconditioner = None,
matT = None,
ep : float = 1., **kwargs)
| 567 | name = "TFQMR" |
| 568 | |
| 569 | def __init__(self, *args, pre2 : Preconditioner = None, |
| 570 | matT = None, |
| 571 | ep : float = 1., **kwargs): |
| 572 | super().__init__(*args, **kwargs) |
| 573 | |
| 574 | def _SolveImpl(self, rhs : BaseVector, sol : BaseVector): |
| 575 | # following implementation from scipy |