| 109 | /** \internal default implementation of solving with a sparse rhs */ |
| 110 | template<typename Rhs,typename Dest> |
| 111 | void _solve_impl(const SparseMatrixBase<Rhs> &b, SparseMatrixBase<Dest> &dest) const |
| 112 | { |
| 113 | internal::solve_sparse_through_dense_panels(derived(), b.derived(), dest.derived()); |
| 114 | } |
| 115 | #endif // EIGEN_PARSED_BY_DOXYGEN |
| 116 | |
| 117 | protected: |
no test coverage detected