| 535 | |
| 536 | template<typename RhsType, typename DstType> |
| 537 | EIGEN_DEVICE_FUNC |
| 538 | EIGEN_STRONG_INLINE void _solve_impl(const RhsType &rhs, DstType &dst) const { |
| 539 | if(!internal::is_same_dense(dst,rhs)) |
| 540 | dst = rhs; |
| 541 | this->solveInPlace(dst); |
| 542 | } |
| 543 | |
| 544 | template<typename ProductType> |
| 545 | EIGEN_DEVICE_FUNC |
nothing calls this directly
no test coverage detected