| 32 | */ |
| 33 | template<typename _RHS> |
| 34 | SolveOp<_DecompositionImpl, _RHS> solve(const MatrixBase<_RHS>& rhs) const |
| 35 | { |
| 36 | return SolveOp<_DecompositionImpl, _RHS>(impl(), rhs.derived()); |
| 37 | } |
| 38 | }; |
| 39 | |
| 40 | namespace internal |
nothing calls this directly
no outgoing calls
no test coverage detected