| 548 | |
| 549 | template<typename RhsType, typename DstType> |
| 550 | EIGEN_DEVICE_FUNC |
| 551 | EIGEN_STRONG_INLINE void _solve_impl(const RhsType &rhs, DstType &dst) const { |
| 552 | if(!internal::is_same_dense(dst,rhs)) |
| 553 | dst = rhs; |
| 554 | this->solveInPlace(dst); |
| 555 | } |
| 556 | |
| 557 | template<typename ProductType> |
| 558 | EIGEN_DEVICE_FUNC |
nothing calls this directly
no test coverage detected