Hide some deprecated classes.

This commit is contained in:
Gael Guennebaud
2014-02-24 11:41:19 +01:00
parent c98881e130
commit 1e0c2f6ddb
4 changed files with 13 additions and 7 deletions

View File

@@ -770,7 +770,7 @@ struct solve_retval<FullPivLU<_MatrixType>, Rhs>
#endif
/***** Implementation of inverse() *****************************************************/
#ifdef EIGEN_TEST_EVALUATORS
template<typename DstXprType, typename MatrixType, typename Scalar>
struct Assignment<DstXprType, Inverse<FullPivLU<MatrixType> >, internal::assign_op<Scalar>, Dense2Dense, Scalar>
{
@@ -781,7 +781,7 @@ struct Assignment<DstXprType, Inverse<FullPivLU<MatrixType> >, internal::assign_
dst = src.nestedExpression().solve(MatrixType::Identity(src.rows(), src.cols()));
}
};
#endif
} // end namespace internal
/******* MatrixBase methods *****************************************************************/

View File

@@ -505,7 +505,7 @@ struct solve_retval<PartialPivLU<_MatrixType>, Rhs>
#endif
/***** Implementation of inverse() *****************************************************/
#ifdef EIGEN_TEST_EVALUATORS
template<typename DstXprType, typename MatrixType, typename Scalar>
struct Assignment<DstXprType, Inverse<PartialPivLU<MatrixType> >, internal::assign_op<Scalar>, Dense2Dense, Scalar>
{
@@ -516,7 +516,7 @@ struct Assignment<DstXprType, Inverse<PartialPivLU<MatrixType> >, internal::assi
dst = src.nestedExpression().solve(MatrixType::Identity(src.rows(), src.cols()));
}
};
#endif
} // end namespace internal
/******** MatrixBase methods *******/