Implement the missing bits to make Solve compatible with sparse rhs

This commit is contained in:
Gael Guennebaud
2014-09-01 14:50:59 +02:00
parent e6cc24cbd6
commit bc065c75d2
3 changed files with 29 additions and 0 deletions

View File

@@ -99,6 +99,15 @@ private:
Scalar coeff(Index i) const;
};
#ifdef EIGEN_TEST_EVALUATORS
// Generic API dispatcher
template<typename Decomposition, typename RhsType, typename StorageKind>
class SolveImpl : public internal::generic_xpr_base<Solve<Decomposition,RhsType>, MatrixXpr, StorageKind>::type
{
public:
typedef typename internal::generic_xpr_base<Solve<Decomposition,RhsType>, MatrixXpr, StorageKind>::type Base;
};
#endif
namespace internal {