// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2015 Gael Guennebaud // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can obtain one at http://mozilla.org/MPL/2.0/. #ifndef EIGEN_SPARSE_REF_H #define EIGEN_SPARSE_REF_H // IWYU pragma: private #include "./InternalHeaderCheck.h" namespace Eigen { enum { StandardCompressedFormat = 2 /**< used by Ref to specify whether the input storage must be in standard compressed form */ }; namespace internal { template class SparseRefBase; template struct traits, Options_, StrideType_>> : public traits> { typedef SparseMatrix PlainObjectType; enum { Options = Options_, Flags = traits::Flags | CompressedAccessBit | NestByRefBit }; template struct match { enum { StorageOrderMatch = PlainObjectType::IsVectorAtCompileTime || Derived::IsVectorAtCompileTime || ((PlainObjectType::Flags & RowMajorBit) == (Derived::Flags & RowMajorBit)), MatchAtCompileTime = (Derived::Flags & CompressedAccessBit) && StorageOrderMatch }; typedef std::conditional_t type; }; }; template struct traits, Options_, StrideType_>> : public traits, Options_, StrideType_>> { enum { Flags = (traits>::Flags | CompressedAccessBit | NestByRefBit) & ~LvalueBit }; }; template struct traits, Options_, StrideType_>> : public traits> { typedef SparseVector PlainObjectType; enum { Options = Options_, Flags = traits::Flags | CompressedAccessBit | NestByRefBit }; template struct match { enum { MatchAtCompileTime = (Derived::Flags & CompressedAccessBit) && Derived::IsVectorAtCompileTime }; typedef std::conditional_t type; }; }; template struct traits, Options_, StrideType_>> : public traits, Options_, StrideType_>> { enum { Flags = (traits>::Flags | CompressedAccessBit | NestByRefBit) & ~LvalueBit }; }; template struct traits> : public traits {}; template class SparseRefBase : public SparseMapBase { public: typedef SparseMapBase Base; EIGEN_SPARSE_PUBLIC_INTERFACE(SparseRefBase) SparseRefBase() : Base(RowsAtCompileTime == Dynamic ? 0 : RowsAtCompileTime, ColsAtCompileTime == Dynamic ? 0 : ColsAtCompileTime, 0, 0, 0, 0, 0) {} protected: template void construct(Expression& expr) { if (expr.outerIndexPtr() == 0) internal::construct_at(this, expr.size(), expr.nonZeros(), expr.innerIndexPtr(), expr.valuePtr()); else internal::construct_at(this, expr.rows(), expr.cols(), expr.nonZeros(), expr.outerIndexPtr(), expr.innerIndexPtr(), expr.valuePtr(), expr.innerNonZeroPtr()); } }; } // namespace internal /** * \ingroup SparseCore_Module * * \brief A sparse matrix expression referencing an existing sparse expression * * \tparam SparseMatrixType the equivalent sparse matrix type of the referenced data, it must be a template instance of * class SparseMatrix. \tparam Options specifies whether the a standard compressed format is required \c Options is \c * #StandardCompressedFormat, or \c 0. The default is \c 0. * * \sa class Ref */ #ifndef EIGEN_PARSED_BY_DOXYGEN template class Ref, Options, StrideType> : public internal::SparseRefBase, Options, StrideType>> #else template class Ref : public SparseMapBase // yes, that's weird to use Derived here, but that works! #endif { typedef SparseMatrix PlainObjectType; typedef internal::traits Traits; template inline Ref(const SparseMatrix& expr); template inline Ref(const Map>& expr); public: typedef internal::SparseRefBase Base; EIGEN_SPARSE_PUBLIC_INTERFACE(Ref) #ifndef EIGEN_PARSED_BY_DOXYGEN template inline Ref(SparseMatrix& expr) { EIGEN_STATIC_ASSERT( bool(Traits::template match>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH); eigen_assert(((Options & int(StandardCompressedFormat)) == 0) || (expr.isCompressed())); Base::construct(expr.derived()); } template inline Ref(Map>& expr) { EIGEN_STATIC_ASSERT( bool(Traits::template match>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH); eigen_assert(((Options & int(StandardCompressedFormat)) == 0) || (expr.isCompressed())); Base::construct(expr.derived()); } template inline Ref(const SparseCompressedBase& expr) #else /** Implicit constructor from any sparse expression (2D matrix or 1D vector) */ template inline Ref(SparseCompressedBase& expr) #endif { EIGEN_STATIC_ASSERT(bool(internal::is_lvalue::value), THIS_EXPRESSION_IS_NOT_A_LVALUE__IT_IS_READ_ONLY); EIGEN_STATIC_ASSERT(bool(Traits::template match::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH); eigen_assert(((Options & int(StandardCompressedFormat)) == 0) || (expr.isCompressed())); Base::construct(expr.const_cast_derived()); } }; // this is the const ref version template class Ref, Options, StrideType> : public internal::SparseRefBase, Options, StrideType>> { typedef SparseMatrix TPlainObjectType; typedef internal::traits Traits; public: typedef internal::SparseRefBase Base; EIGEN_SPARSE_PUBLIC_INTERFACE(Ref) template inline Ref(const SparseMatrixBase& expr) : m_hasCopy(false) { construct(expr.derived(), typename Traits::template match::type()); } inline Ref(const Ref& other) : Base(other), m_hasCopy(false) { // copy constructor shall not copy the m_object, to avoid unnecessary malloc and copy } template inline Ref(const RefBase& other) : m_hasCopy(false) { construct(other.derived(), typename Traits::template match::type()); } ~Ref() { if (m_hasCopy) { internal::destroy_at(reinterpret_cast(&m_storage)); } } protected: template void construct(const Expression& expr, internal::true_type) { if ((Options & int(StandardCompressedFormat)) && (!expr.isCompressed())) { TPlainObjectType* obj = internal::construct_at(reinterpret_cast(&m_storage), expr); m_hasCopy = true; Base::construct(*obj); } else { Base::construct(expr); } } template void construct(const Expression& expr, internal::false_type) { TPlainObjectType* obj = internal::construct_at(reinterpret_cast(&m_storage), expr); m_hasCopy = true; Base::construct(*obj); } protected: typename internal::aligned_storage::type m_storage; bool m_hasCopy; }; /** * \ingroup SparseCore_Module * * \brief A sparse vector expression referencing an existing sparse vector expression * * \tparam SparseVectorType the equivalent sparse vector type of the referenced data, it must be a template instance of * class SparseVector. * * \sa class Ref */ #ifndef EIGEN_PARSED_BY_DOXYGEN template class Ref, Options, StrideType> : public internal::SparseRefBase, Options, StrideType>> #else template class Ref : public SparseMapBase #endif { typedef SparseVector PlainObjectType; typedef internal::traits Traits; template inline Ref(const SparseVector& expr); public: typedef internal::SparseRefBase Base; EIGEN_SPARSE_PUBLIC_INTERFACE(Ref) #ifndef EIGEN_PARSED_BY_DOXYGEN template inline Ref(SparseVector& expr) { EIGEN_STATIC_ASSERT( bool(Traits::template match>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH); Base::construct(expr.derived()); } template inline Ref(const SparseCompressedBase& expr) #else /** Implicit constructor from any 1D sparse vector expression */ template inline Ref(SparseCompressedBase& expr) #endif { EIGEN_STATIC_ASSERT(bool(internal::is_lvalue::value), THIS_EXPRESSION_IS_NOT_A_LVALUE__IT_IS_READ_ONLY); EIGEN_STATIC_ASSERT(bool(Traits::template match::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH); Base::construct(expr.const_cast_derived()); } }; // this is the const ref version template class Ref, Options, StrideType> : public internal::SparseRefBase, Options, StrideType>> { typedef SparseVector TPlainObjectType; typedef internal::traits Traits; public: typedef internal::SparseRefBase Base; EIGEN_SPARSE_PUBLIC_INTERFACE(Ref) template inline Ref(const SparseMatrixBase& expr) : m_hasCopy(false) { construct(expr.derived(), typename Traits::template match::type()); } inline Ref(const Ref& other) : Base(other), m_hasCopy(false) { // copy constructor shall not copy the m_object, to avoid unnecessary malloc and copy } template inline Ref(const RefBase& other) : m_hasCopy(false) { construct(other.derived(), typename Traits::template match::type()); } ~Ref() { if (m_hasCopy) { internal::destroy_at(reinterpret_cast(&m_storage)); } } protected: template void construct(const Expression& expr, internal::true_type) { Base::construct(expr); } template void construct(const Expression& expr, internal::false_type) { TPlainObjectType* obj = internal::construct_at(reinterpret_cast(&m_storage), expr); m_hasCopy = true; Base::construct(*obj); } protected: typename internal::aligned_storage::type m_storage; bool m_hasCopy; }; namespace internal { // FIXME shall we introduce a general evaluatior_ref that we can specialize for any sparse object once, and thus remove // this copy-pasta thing... template struct evaluator, Options, StrideType>> : evaluator, Options, StrideType>>> { typedef evaluator, Options, StrideType>>> Base; typedef Ref, Options, StrideType> XprType; evaluator() : Base() {} explicit evaluator(const XprType& mat) : Base(mat) {} }; template struct evaluator, Options, StrideType>> : evaluator, Options, StrideType>>> { typedef evaluator, Options, StrideType>>> Base; typedef Ref, Options, StrideType> XprType; evaluator() : Base() {} explicit evaluator(const XprType& mat) : Base(mat) {} }; template struct evaluator, Options, StrideType>> : evaluator, Options, StrideType>>> { typedef evaluator, Options, StrideType>>> Base; typedef Ref, Options, StrideType> XprType; evaluator() : Base() {} explicit evaluator(const XprType& mat) : Base(mat) {} }; template struct evaluator, Options, StrideType>> : evaluator, Options, StrideType>>> { typedef evaluator, Options, StrideType>>> Base; typedef Ref, Options, StrideType> XprType; evaluator() : Base() {} explicit evaluator(const XprType& mat) : Base(mat) {} }; } // namespace internal } // end namespace Eigen #endif // EIGEN_SPARSE_REF_H