bug #86 : use internal:: namespace instead of ei_ prefix

This commit is contained in:
Benoit Jacob
2010-10-25 10:15:22 -04:00
parent ca85a1f6c5
commit 4716040703
330 changed files with 7615 additions and 7032 deletions

View File

@@ -111,8 +111,8 @@ The solution which is preferred at the moment is based on a little \em hack. One
template <typename Derived, typename OtherDerived>
void cov(const MatrixBase<Derived>& x, const MatrixBase<Derived>& y, MatrixBase<OtherDerived> EIGEN_REF_TO_TEMPORARY C)
{
typedef typename ei_traits<Derived>::Scalar Scalar;
typedef typename ei_plain_row_type<Derived>::type RowVectorType;
typedef typename internal::traits<Derived>::Scalar Scalar;
typedef typename internal::plain_row_type<Derived>::type RowVectorType;
const Scalar num_observations = static_cast<Scalar>(x.rows());
@@ -141,8 +141,8 @@ This is not the case anymore, when we are using an implementation taking MatrixB
template <typename Derived, typename OtherDerived>
void cov(const MatrixBase<Derived>& x, const MatrixBase<Derived>& y, MatrixBase<OtherDerived> EIGEN_REF_TO_TEMPORARY C_)
{
typedef typename ei_traits<Derived>::Scalar Scalar;
typedef typename ei_plain_row_type<Derived>::type RowVectorType;
typedef typename internal::traits<Derived>::Scalar Scalar;
typedef typename internal::plain_row_type<Derived>::type RowVectorType;
const Scalar num_observations = static_cast<Scalar>(x.rows());