mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-21 08:53:17 +08:00
fix VC10 ICE
This commit is contained in:
parent
d6bf9f848a
commit
db8f528737
@ -51,19 +51,19 @@ class CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::InnerIterator
|
|||||||
typedef typename CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::MatrixTypeIterator Base;
|
typedef typename CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::MatrixTypeIterator Base;
|
||||||
public:
|
public:
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE InnerIterator(const CwiseUnaryOpImpl& unaryOp, Index outer)
|
EIGEN_STRONG_INLINE InnerIterator(const CwiseUnaryOpImpl& unaryOp, typename CwiseUnaryOpImpl::Index outer)
|
||||||
: Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
|
: Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
|
||||||
{}
|
{}
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE InnerIterator& operator++()
|
EIGEN_STRONG_INLINE InnerIterator& operator++()
|
||||||
{ Base::operator++(); return *this; }
|
{ Base::operator++(); return *this; }
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE Scalar value() const { return m_functor(Base::value()); }
|
EIGEN_STRONG_INLINE typename CwiseUnaryOpImpl::Scalar value() const { return m_functor(Base::value()); }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
const UnaryOp m_functor;
|
const UnaryOp m_functor;
|
||||||
private:
|
private:
|
||||||
Scalar& valueRef();
|
typename CwiseUnaryOpImpl::Scalar& valueRef();
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename UnaryOp, typename MatrixType>
|
template<typename UnaryOp, typename MatrixType>
|
||||||
@ -74,19 +74,19 @@ class CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::ReverseInnerIterator
|
|||||||
typedef typename CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::MatrixTypeReverseIterator Base;
|
typedef typename CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::MatrixTypeReverseIterator Base;
|
||||||
public:
|
public:
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE ReverseInnerIterator(const CwiseUnaryOpImpl& unaryOp, Index outer)
|
EIGEN_STRONG_INLINE ReverseInnerIterator(const CwiseUnaryOpImpl& unaryOp, typename CwiseUnaryOpImpl::Index outer)
|
||||||
: Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
|
: Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
|
||||||
{}
|
{}
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE ReverseInnerIterator& operator--()
|
EIGEN_STRONG_INLINE ReverseInnerIterator& operator--()
|
||||||
{ Base::operator--(); return *this; }
|
{ Base::operator--(); return *this; }
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE Scalar value() const { return m_functor(Base::value()); }
|
EIGEN_STRONG_INLINE typename CwiseUnaryOpImpl::Scalar value() const { return m_functor(Base::value()); }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
const UnaryOp m_functor;
|
const UnaryOp m_functor;
|
||||||
private:
|
private:
|
||||||
Scalar& valueRef();
|
typename CwiseUnaryOpImpl::Scalar& valueRef();
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename ViewOp, typename MatrixType>
|
template<typename ViewOp, typename MatrixType>
|
||||||
@ -115,15 +115,15 @@ class CwiseUnaryViewImpl<ViewOp,MatrixType,Sparse>::InnerIterator
|
|||||||
typedef typename CwiseUnaryViewImpl<ViewOp,MatrixType,Sparse>::MatrixTypeIterator Base;
|
typedef typename CwiseUnaryViewImpl<ViewOp,MatrixType,Sparse>::MatrixTypeIterator Base;
|
||||||
public:
|
public:
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE InnerIterator(const CwiseUnaryViewImpl& unaryOp, Index outer)
|
EIGEN_STRONG_INLINE InnerIterator(const CwiseUnaryViewImpl& unaryOp, typename CwiseUnaryViewImpl::Index outer)
|
||||||
: Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
|
: Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
|
||||||
{}
|
{}
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE InnerIterator& operator++()
|
EIGEN_STRONG_INLINE InnerIterator& operator++()
|
||||||
{ Base::operator++(); return *this; }
|
{ Base::operator++(); return *this; }
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE Scalar value() const { return m_functor(Base::value()); }
|
EIGEN_STRONG_INLINE typename CwiseUnaryViewImpl::Scalar value() const { return m_functor(Base::value()); }
|
||||||
EIGEN_STRONG_INLINE Scalar& valueRef() { return m_functor(Base::valueRef()); }
|
EIGEN_STRONG_INLINE typename CwiseUnaryViewImpl::Scalar& valueRef() { return m_functor(Base::valueRef()); }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
const ViewOp m_functor;
|
const ViewOp m_functor;
|
||||||
@ -137,15 +137,15 @@ class CwiseUnaryViewImpl<ViewOp,MatrixType,Sparse>::ReverseInnerIterator
|
|||||||
typedef typename CwiseUnaryViewImpl<ViewOp,MatrixType,Sparse>::MatrixTypeReverseIterator Base;
|
typedef typename CwiseUnaryViewImpl<ViewOp,MatrixType,Sparse>::MatrixTypeReverseIterator Base;
|
||||||
public:
|
public:
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE ReverseInnerIterator(const CwiseUnaryViewImpl& unaryOp, Index outer)
|
EIGEN_STRONG_INLINE ReverseInnerIterator(const CwiseUnaryViewImpl& unaryOp, typename CwiseUnaryViewImpl::Index outer)
|
||||||
: Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
|
: Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
|
||||||
{}
|
{}
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE ReverseInnerIterator& operator--()
|
EIGEN_STRONG_INLINE ReverseInnerIterator& operator--()
|
||||||
{ Base::operator--(); return *this; }
|
{ Base::operator--(); return *this; }
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE Scalar value() const { return m_functor(Base::value()); }
|
EIGEN_STRONG_INLINE typename CwiseUnaryViewImpl::Scalar value() const { return m_functor(Base::value()); }
|
||||||
EIGEN_STRONG_INLINE Scalar& valueRef() { return m_functor(Base::valueRef()); }
|
EIGEN_STRONG_INLINE typename CwiseUnaryViewImpl::Scalar& valueRef() { return m_functor(Base::valueRef()); }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
const ViewOp m_functor;
|
const ViewOp m_functor;
|
||||||
|
@ -39,17 +39,21 @@ template<typename MatrixType> class TransposeImpl<MatrixType,Sparse>
|
|||||||
inline Index nonZeros() const { return derived().nestedExpression().nonZeros(); }
|
inline Index nonZeros() const { return derived().nestedExpression().nonZeros(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// NOTE: VC10 trigger an ICE if don't put typename TransposeImpl<MatrixType,Sparse>:: in front of Index,
|
||||||
|
// a typedef typename TransposeImpl<MatrixType,Sparse>::Index Index;
|
||||||
|
// does not fix the issue.
|
||||||
|
// An alternative is to define the nested class in the parent class itself.
|
||||||
template<typename MatrixType> class TransposeImpl<MatrixType,Sparse>::InnerIterator
|
template<typename MatrixType> class TransposeImpl<MatrixType,Sparse>::InnerIterator
|
||||||
: public _MatrixTypeNested::InnerIterator
|
: public _MatrixTypeNested::InnerIterator
|
||||||
{
|
{
|
||||||
typedef typename _MatrixTypeNested::InnerIterator Base;
|
typedef typename _MatrixTypeNested::InnerIterator Base;
|
||||||
public:
|
public:
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE InnerIterator(const TransposeImpl& trans, Index outer)
|
EIGEN_STRONG_INLINE InnerIterator(const TransposeImpl& trans, typename TransposeImpl<MatrixType,Sparse>::Index outer)
|
||||||
: Base(trans.derived().nestedExpression(), outer)
|
: Base(trans.derived().nestedExpression(), outer)
|
||||||
{}
|
{}
|
||||||
inline Index row() const { return Base::col(); }
|
inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); }
|
||||||
inline Index col() const { return Base::row(); }
|
inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename MatrixType> class TransposeImpl<MatrixType,Sparse>::ReverseInnerIterator
|
template<typename MatrixType> class TransposeImpl<MatrixType,Sparse>::ReverseInnerIterator
|
||||||
@ -58,11 +62,11 @@ template<typename MatrixType> class TransposeImpl<MatrixType,Sparse>::ReverseInn
|
|||||||
typedef typename _MatrixTypeNested::ReverseInnerIterator Base;
|
typedef typename _MatrixTypeNested::ReverseInnerIterator Base;
|
||||||
public:
|
public:
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE ReverseInnerIterator(const TransposeImpl& xpr, Index outer)
|
EIGEN_STRONG_INLINE ReverseInnerIterator(const TransposeImpl& xpr, typename TransposeImpl<MatrixType,Sparse>::Index outer)
|
||||||
: Base(xpr.derived().nestedExpression(), outer)
|
: Base(xpr.derived().nestedExpression(), outer)
|
||||||
{}
|
{}
|
||||||
inline Index row() const { return Base::col(); }
|
inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); }
|
||||||
inline Index col() const { return Base::row(); }
|
inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // EIGEN_SPARSETRANSPOSE_H
|
#endif // EIGEN_SPARSETRANSPOSE_H
|
||||||
|
Loading…
x
Reference in New Issue
Block a user