eigen2: pass the inverse test

This commit is contained in:
Benoit Jacob 2011-01-25 10:05:29 -05:00
parent 09d1923f61
commit b1d6a9945c

View File

@ -345,6 +345,13 @@ template<typename Derived> class MatrixBase
#if EIGEN2_SUPPORT_STAGE > STAGE20_RESOLVE_API_CONFLICTS
const PartialPivLU<PlainObject> lu() const;
#endif
#ifdef EIGEN2_SUPPORT
template<typename ResultType>
void computeInverse(MatrixBase<ResultType> *result) const {
*result = this->inverse();
}
#endif
const internal::inverse_impl<Derived> inverse() const;
template<typename ResultType>