mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-09-15 02:43:14 +08:00
cleanup
This commit is contained in:
parent
6908ce2a15
commit
ec8a387972
@ -180,50 +180,18 @@ class Array
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if EIGEN_HAS_CXX11
|
#if EIGEN_HAS_CXX11
|
||||||
protected:
|
|
||||||
enum { IsFixedSizeVectorAtCompileTime = RowsAtCompileTime != Dynamic && ColsAtCompileTime != Dynamic && IsVectorAtCompileTime == 1 };
|
|
||||||
public:
|
|
||||||
template <typename... ArgTypes>
|
|
||||||
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
|
|
||||||
Array(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
|
||||||
: Base(a0, a1, a2, a3, args...) {}
|
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC
|
|
||||||
EIGEN_STRONG_INLINE Array(const std::initializer_list<std::initializer_list<Scalar> >& list) : Base(list) {}
|
|
||||||
#endif // end EIGEN_HAS_CXX11
|
|
||||||
|
|
||||||
#else
|
|
||||||
/** \brief Constructs a fixed-sized array initialized with coefficients starting at \a data */
|
|
||||||
EIGEN_DEVICE_FUNC explicit Array(const Scalar *data);
|
|
||||||
/** Constructs a vector or row-vector with given dimension. \only_for_vectors
|
|
||||||
*
|
|
||||||
* Note that this is only useful for dynamic-size vectors. For fixed-size vectors,
|
|
||||||
* it is redundant to pass the dimension here, so it makes more sense to use the default
|
|
||||||
* constructor Array() instead.
|
|
||||||
*/
|
|
||||||
EIGEN_DEVICE_FUNC
|
|
||||||
EIGEN_STRONG_INLINE explicit Array(Index dim);
|
|
||||||
/** constructs an initialized 1x1 Array with the given coefficient */
|
|
||||||
Array(const Scalar& value);
|
|
||||||
/** constructs an uninitialized array with \a rows rows and \a cols columns.
|
|
||||||
*
|
|
||||||
* This is useful for dynamic-size arrays. For fixed-size arrays,
|
|
||||||
* it is redundant to pass these parameters, so one should use the default constructor
|
|
||||||
* Array() instead. */
|
|
||||||
Array(Index rows, Index cols);
|
|
||||||
/** constructs an initialized 2D vector with given coefficients */
|
|
||||||
Array(const Scalar& val0, const Scalar& val1);
|
|
||||||
|
|
||||||
/** \copydoc PlainObjectBase(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
/** \copydoc PlainObjectBase(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
||||||
*
|
*
|
||||||
* Example: \include Array_variadic_ctor_cxx11.cpp
|
* Example: \include Array_variadic_ctor_cxx11.cpp
|
||||||
* Output: \verbinclude Array_variadic_ctor_cxx11.out
|
* Output: \verbinclude Array_variadic_ctor_cxx11.out
|
||||||
*
|
*
|
||||||
* \sa Array(const std::initializer_list<std::initializer_list<Scalar>>&)
|
* \sa Array(const std::initializer_list<std::initializer_list<Scalar>>&)
|
||||||
|
* \sa Array(Scalar), Array(Scalar,Scalar)
|
||||||
*/
|
*/
|
||||||
template <typename... ArgTypes>
|
template <typename... ArgTypes>
|
||||||
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
|
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
|
||||||
Array(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args);
|
Array(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
||||||
|
: Base(a0, a1, a2, a3, args...) {}
|
||||||
|
|
||||||
/** \brief Constructs an array and initializes it from the coefficients given as initializer-lists grouped by row. \cpp11
|
/** \brief Constructs an array and initializes it from the coefficients given as initializer-lists grouped by row. \cpp11
|
||||||
*
|
*
|
||||||
@ -244,14 +212,39 @@ class Array
|
|||||||
* In the case of fixed-sized arrays, the initializer list sizes must exactly match the array sizes,
|
* In the case of fixed-sized arrays, the initializer list sizes must exactly match the array sizes,
|
||||||
* and implicit transposition is allowed for compile-time 1D arrays only.
|
* and implicit transposition is allowed for compile-time 1D arrays only.
|
||||||
*
|
*
|
||||||
* \sa Array(const std::initializer_list<Scalar>&)
|
* \sa Array(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
||||||
*/
|
*/
|
||||||
EIGEN_DEVICE_FUNC
|
EIGEN_DEVICE_FUNC
|
||||||
EIGEN_STRONG_INLINE Array(const std::initializer_list<std::initializer_list<Scalar> >& list);
|
EIGEN_STRONG_INLINE Array(const std::initializer_list<std::initializer_list<Scalar> >& list) : Base(list) {}
|
||||||
|
#endif // end EIGEN_HAS_CXX11
|
||||||
|
|
||||||
|
#else
|
||||||
|
/** \brief Constructs a fixed-sized array initialized with coefficients starting at \a data */
|
||||||
|
EIGEN_DEVICE_FUNC explicit Array(const Scalar *data);
|
||||||
|
/** Constructs a vector or row-vector with given dimension. \only_for_vectors
|
||||||
|
*
|
||||||
|
* Note that this is only useful for dynamic-size vectors. For fixed-size vectors,
|
||||||
|
* it is redundant to pass the dimension here, so it makes more sense to use the default
|
||||||
|
* constructor Array() instead.
|
||||||
|
*/
|
||||||
|
EIGEN_DEVICE_FUNC
|
||||||
|
EIGEN_STRONG_INLINE explicit Array(Index dim);
|
||||||
|
/** constructs an initialized 1x1 Array with the given coefficient
|
||||||
|
* \sa const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args */
|
||||||
|
Array(const Scalar& value);
|
||||||
|
/** constructs an uninitialized array with \a rows rows and \a cols columns.
|
||||||
|
*
|
||||||
|
* This is useful for dynamic-size arrays. For fixed-size arrays,
|
||||||
|
* it is redundant to pass these parameters, so one should use the default constructor
|
||||||
|
* Array() instead. */
|
||||||
|
Array(Index rows, Index cols);
|
||||||
|
/** constructs an initialized 2D vector with given coefficients
|
||||||
|
* \sa Array(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args) */
|
||||||
|
Array(const Scalar& val0, const Scalar& val1);
|
||||||
#endif // end EIGEN_PARSED_BY_DOXYGEN
|
#endif // end EIGEN_PARSED_BY_DOXYGEN
|
||||||
|
|
||||||
/** constructs an initialized 3D vector with given coefficients
|
/** constructs an initialized 3D vector with given coefficients
|
||||||
* \sa Array(const std::initializer_list<Scalar>&)
|
* \sa Array(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
||||||
*/
|
*/
|
||||||
EIGEN_DEVICE_FUNC
|
EIGEN_DEVICE_FUNC
|
||||||
EIGEN_STRONG_INLINE Array(const Scalar& val0, const Scalar& val1, const Scalar& val2)
|
EIGEN_STRONG_INLINE Array(const Scalar& val0, const Scalar& val1, const Scalar& val2)
|
||||||
@ -263,7 +256,7 @@ class Array
|
|||||||
m_storage.data()[2] = val2;
|
m_storage.data()[2] = val2;
|
||||||
}
|
}
|
||||||
/** constructs an initialized 4D vector with given coefficients
|
/** constructs an initialized 4D vector with given coefficients
|
||||||
* \sa Array(const std::initializer_list<Scalar>&)
|
* \sa Array(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
||||||
*/
|
*/
|
||||||
EIGEN_DEVICE_FUNC
|
EIGEN_DEVICE_FUNC
|
||||||
EIGEN_STRONG_INLINE Array(const Scalar& val0, const Scalar& val1, const Scalar& val2, const Scalar& val3)
|
EIGEN_STRONG_INLINE Array(const Scalar& val0, const Scalar& val1, const Scalar& val2, const Scalar& val3)
|
||||||
|
@ -303,12 +303,39 @@ class Matrix
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if EIGEN_HAS_CXX11
|
#if EIGEN_HAS_CXX11
|
||||||
public:
|
/** \copydoc PlainObjectBase(const Scalar&, const Scalar&, const Scalar&, const Scalar&, const ArgTypes&...)
|
||||||
|
*
|
||||||
|
* Example: \include Matrix_variadic_ctor_cxx11.cpp
|
||||||
|
* Output: \verbinclude Matrix_variadic_ctor_cxx11.out
|
||||||
|
*
|
||||||
|
* \sa Matrix(const std::initializer_list<std::initializer_list<Scalar>>&)
|
||||||
|
*/
|
||||||
template <typename... ArgTypes>
|
template <typename... ArgTypes>
|
||||||
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
|
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
|
||||||
Matrix(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
Matrix(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
||||||
: Base(a0, a1, a2, a3, args...) {}
|
: Base(a0, a1, a2, a3, args...) {}
|
||||||
|
|
||||||
|
/** \brief Constructs a Matrix and initializes it from the coefficients given as initializer-lists grouped by row. \cpp11
|
||||||
|
*
|
||||||
|
* In the general case, the constructor takes a list of rows, each row being represented as a list of coefficients:
|
||||||
|
*
|
||||||
|
* Example: \include Matrix_initializer_list_23_cxx11.cpp
|
||||||
|
* Output: \verbinclude Matrix_initializer_list_23_cxx11.out
|
||||||
|
*
|
||||||
|
* Each of the inner initializer lists must contain the exact same number of elements, otherwise an assertion is triggered.
|
||||||
|
*
|
||||||
|
* In the case of a compile-time column vector, implicit transposition from a single row is allowed.
|
||||||
|
* Therefore <code>VectorXd{{1,2,3,4,5}}</code> is legal and the more verbose syntax
|
||||||
|
* <code>RowVectorXd{{1},{2},{3},{4},{5}}</code> can be avoided:
|
||||||
|
*
|
||||||
|
* Example: \include Matrix_initializer_list_vector_cxx11.cpp
|
||||||
|
* Output: \verbinclude Matrix_initializer_list_vector_cxx11.out
|
||||||
|
*
|
||||||
|
* In the case of fixed-sized matrices, the initializer list sizes must exactly match the matrix sizes,
|
||||||
|
* and implicit transposition is allowed for compile-time vectors only.
|
||||||
|
*
|
||||||
|
* \sa Matrix(const Scalar&, const Scalar&, const Scalar&, const Scalar&, const ArgTypes&...)
|
||||||
|
*/
|
||||||
EIGEN_DEVICE_FUNC
|
EIGEN_DEVICE_FUNC
|
||||||
explicit EIGEN_STRONG_INLINE Matrix(const std::initializer_list<std::initializer_list<Scalar>>& list) : Base(list) {}
|
explicit EIGEN_STRONG_INLINE Matrix(const std::initializer_list<std::initializer_list<Scalar>>& list) : Base(list) {}
|
||||||
#endif // end EIGEN_HAS_CXX11
|
#endif // end EIGEN_HAS_CXX11
|
||||||
@ -331,7 +358,8 @@ class Matrix
|
|||||||
* \c EIGEN_INITIALIZE_MATRICES_BY_{ZERO,\c NAN} macros (see \ref TopicPreprocessorDirectives).
|
* \c EIGEN_INITIALIZE_MATRICES_BY_{ZERO,\c NAN} macros (see \ref TopicPreprocessorDirectives).
|
||||||
*/
|
*/
|
||||||
EIGEN_STRONG_INLINE explicit Matrix(Index dim);
|
EIGEN_STRONG_INLINE explicit Matrix(Index dim);
|
||||||
/** \brief Constructs an initialized 1x1 matrix with the given coefficient */
|
/** \brief Constructs an initialized 1x1 matrix with the given coefficient
|
||||||
|
* \sa Matrix(const Scalar&, const Scalar&, const Scalar&, const Scalar&, const ArgTypes&...) */
|
||||||
Matrix(const Scalar& x);
|
Matrix(const Scalar& x);
|
||||||
/** \brief Constructs an uninitialized matrix with \a rows rows and \a cols columns.
|
/** \brief Constructs an uninitialized matrix with \a rows rows and \a cols columns.
|
||||||
*
|
*
|
||||||
@ -348,48 +376,13 @@ class Matrix
|
|||||||
EIGEN_DEVICE_FUNC
|
EIGEN_DEVICE_FUNC
|
||||||
Matrix(Index rows, Index cols);
|
Matrix(Index rows, Index cols);
|
||||||
|
|
||||||
/** \brief Constructs an initialized 2D vector with given coefficients */
|
/** \brief Constructs an initialized 2D vector with given coefficients
|
||||||
|
* \sa Matrix(const Scalar&, const Scalar&, const Scalar&, const Scalar&, const ArgTypes&...) */
|
||||||
Matrix(const Scalar& x, const Scalar& y);
|
Matrix(const Scalar& x, const Scalar& y);
|
||||||
|
|
||||||
/** \copydoc PlainObjectBase(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
|
||||||
*
|
|
||||||
* Example: \include Matrix_variadic_ctor_cxx11.cpp
|
|
||||||
* Output: \verbinclude Matrix_variadic_ctor_cxx11.out
|
|
||||||
*
|
|
||||||
* \sa Matrix(const std::initializer_list<std::initializer_list<Scalar>>&)
|
|
||||||
*/
|
|
||||||
template <typename... ArgTypes>
|
|
||||||
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
|
|
||||||
Matrix(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args);
|
|
||||||
|
|
||||||
/** \brief Constructs a Matrix and initializes it from the coefficients given as initializer-lists grouped by row. \cpp11
|
|
||||||
*
|
|
||||||
* In the general case, the constructor takes a list of rows, each row being represented as a list of coefficients:
|
|
||||||
*
|
|
||||||
* Example: \include Matrix_initializer_list_23_cxx11.cpp
|
|
||||||
* Output: \verbinclude Matrix_initializer_list_23_cxx11.out
|
|
||||||
*
|
|
||||||
* Each of the inner initializer lists must contain the exact same number of elements, otherwise an assertion is triggered.
|
|
||||||
*
|
|
||||||
* In the case of a compile-time column vector, implicit transposition from a single row is allowed.
|
|
||||||
* Therefore <code>VectorXd{{1,2,3,4,5}}</code> is legal and the more verbose syntax
|
|
||||||
* <code>RowVectorXd{{1},{2},{3},{4},{5}}</code> can be avoided:
|
|
||||||
*
|
|
||||||
* Example: \include Matrix_initializer_list_vector_cxx11.cpp
|
|
||||||
* Output: \verbinclude Matrix_initializer_list_vector_cxx11.out
|
|
||||||
*
|
|
||||||
* In the case of fixed-sized matrices, the initializer list sizes must exactly match the matrix sizes,
|
|
||||||
* and implicit transposition is allowed for compile-time vectors only.
|
|
||||||
*
|
|
||||||
* \sa Matrix(const std::initializer_list<Scalar>&)
|
|
||||||
*/
|
|
||||||
EIGEN_DEVICE_FUNC
|
|
||||||
explicit EIGEN_STRONG_INLINE Matrix(const std::initializer_list<std::initializer_list<Scalar>>& list);
|
|
||||||
|
|
||||||
#endif // end EIGEN_PARSED_BY_DOXYGEN
|
#endif // end EIGEN_PARSED_BY_DOXYGEN
|
||||||
|
|
||||||
/** \brief Constructs an initialized 3D vector with given coefficients
|
/** \brief Constructs an initialized 3D vector with given coefficients
|
||||||
* \sa Matrix(const std::initializer_list<Scalar>&)
|
* \sa Matrix(const Scalar&, const Scalar&, const Scalar&, const Scalar&, const ArgTypes&...)
|
||||||
*/
|
*/
|
||||||
EIGEN_DEVICE_FUNC
|
EIGEN_DEVICE_FUNC
|
||||||
EIGEN_STRONG_INLINE Matrix(const Scalar& x, const Scalar& y, const Scalar& z)
|
EIGEN_STRONG_INLINE Matrix(const Scalar& x, const Scalar& y, const Scalar& z)
|
||||||
@ -401,7 +394,7 @@ class Matrix
|
|||||||
m_storage.data()[2] = z;
|
m_storage.data()[2] = z;
|
||||||
}
|
}
|
||||||
/** \brief Constructs an initialized 4D vector with given coefficients
|
/** \brief Constructs an initialized 4D vector with given coefficients
|
||||||
* \sa Matrix(const std::initializer_list<Scalar>&)
|
* \sa Matrix(const Scalar&, const Scalar&, const Scalar&, const Scalar&, const ArgTypes&...)
|
||||||
*/
|
*/
|
||||||
EIGEN_DEVICE_FUNC
|
EIGEN_DEVICE_FUNC
|
||||||
EIGEN_STRONG_INLINE Matrix(const Scalar& x, const Scalar& y, const Scalar& z, const Scalar& w)
|
EIGEN_STRONG_INLINE Matrix(const Scalar& x, const Scalar& y, const Scalar& z, const Scalar& w)
|
||||||
|
@ -526,32 +526,19 @@ class PlainObjectBase : public internal::dense_xpr_base<Derived>::type
|
|||||||
// EIGEN_INITIALIZE_COEFFS_IF_THAT_OPTION_IS_ENABLED
|
// EIGEN_INITIALIZE_COEFFS_IF_THAT_OPTION_IS_ENABLED
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef EIGEN_PARSED_BY_DOXYGEN
|
#if EIGEN_HAS_CXX11
|
||||||
/** \brief Construct a row of column vector with fixed size from an arbitrary number of coefficients. \cpp11
|
/** \brief Construct a row of column vector with fixed size from an arbitrary number of coefficients. \cpp11
|
||||||
*
|
*
|
||||||
* \only_for_vectors
|
* \only_for_vectors
|
||||||
*
|
*
|
||||||
|
* This constructor is for 1D array or vectors with more than 4 coefficients.
|
||||||
|
* There exists c++98 anologue constructors for fixed-size array/vector having 1, 2, 3, or 4 coefficients.
|
||||||
|
*
|
||||||
* \warning To construct a column (resp. row) vector of fixed length, the number of values passed to this
|
* \warning To construct a column (resp. row) vector of fixed length, the number of values passed to this
|
||||||
* constructor must match the the fixed number of rows (resp. columns) of \c *this.
|
* constructor must match the the fixed number of rows (resp. columns) of \c *this.
|
||||||
*/
|
*/
|
||||||
template <typename... ArgTypes>
|
template <typename... ArgTypes>
|
||||||
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
|
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
|
||||||
PlainObjectBase(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args);
|
|
||||||
|
|
||||||
/** \brief Constructs a Matrix or Array and initializes it by elements given by an initializer list of initializer
|
|
||||||
* lists \cpp11
|
|
||||||
*/
|
|
||||||
EIGEN_DEVICE_FUNC
|
|
||||||
explicit EIGEN_STRONG_INLINE PlainObjectBase(const std::initializer_list<std::initializer_list<Scalar>>& list);
|
|
||||||
#else // EIGEN_PARSED_BY_DOXYGEN
|
|
||||||
#if EIGEN_HAS_CXX11
|
|
||||||
|
|
||||||
protected:
|
|
||||||
enum { IsFixedSizeVectorAtCompileTime = RowsAtCompileTime != Dynamic && ColsAtCompileTime != Dynamic && IsVectorAtCompileTime == 1 };
|
|
||||||
public:
|
|
||||||
|
|
||||||
template <typename... ArgTypes>
|
|
||||||
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
|
|
||||||
PlainObjectBase(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
PlainObjectBase(const Scalar& a0, const Scalar& a1, const Scalar& a2, const Scalar& a3, const ArgTypes&... args)
|
||||||
: m_storage()
|
: m_storage()
|
||||||
{
|
{
|
||||||
@ -566,6 +553,9 @@ class PlainObjectBase : public internal::dense_xpr_base<Derived>::type
|
|||||||
static_cast<void>(x);
|
static_cast<void>(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** \brief Constructs a Matrix or Array and initializes it by elements given by an initializer list of initializer
|
||||||
|
* lists \cpp11
|
||||||
|
*/
|
||||||
EIGEN_DEVICE_FUNC
|
EIGEN_DEVICE_FUNC
|
||||||
explicit EIGEN_STRONG_INLINE PlainObjectBase(const std::initializer_list<std::initializer_list<Scalar>>& list)
|
explicit EIGEN_STRONG_INLINE PlainObjectBase(const std::initializer_list<std::initializer_list<Scalar>>& list)
|
||||||
: m_storage()
|
: m_storage()
|
||||||
@ -600,7 +590,6 @@ class PlainObjectBase : public internal::dense_xpr_base<Derived>::type
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif // end EIGEN_HAS_CXX11
|
#endif // end EIGEN_HAS_CXX11
|
||||||
#endif // end EIGEN_PARSED_BY_DOXYGEN
|
|
||||||
|
|
||||||
/** \sa PlainObjectBase::operator=(const EigenBase<OtherDerived>&) */
|
/** \sa PlainObjectBase::operator=(const EigenBase<OtherDerived>&) */
|
||||||
template<typename OtherDerived>
|
template<typename OtherDerived>
|
||||||
|
@ -1592,6 +1592,7 @@ PREDEFINED = EIGEN_EMPTY_STRUCT \
|
|||||||
EIGEN_QT_SUPPORT \
|
EIGEN_QT_SUPPORT \
|
||||||
EIGEN_STRONG_INLINE=inline \
|
EIGEN_STRONG_INLINE=inline \
|
||||||
EIGEN_DEVICE_FUNC= \
|
EIGEN_DEVICE_FUNC= \
|
||||||
|
EIGEN_HAS_CXX11=1 \
|
||||||
EIGEN_HAS_CXX11_MATH=1 \
|
EIGEN_HAS_CXX11_MATH=1 \
|
||||||
"EIGEN_MAKE_CWISE_BINARY_OP(METHOD,FUNCTOR)=template<typename OtherDerived> const CwiseBinaryOp<FUNCTOR<Scalar>, const Derived, const OtherDerived> METHOD(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const;" \
|
"EIGEN_MAKE_CWISE_BINARY_OP(METHOD,FUNCTOR)=template<typename OtherDerived> const CwiseBinaryOp<FUNCTOR<Scalar>, const Derived, const OtherDerived> METHOD(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const;" \
|
||||||
"EIGEN_CWISE_PRODUCT_RETURN_TYPE(LHS,RHS)=CwiseBinaryOp<internal::scalar_product_op<LHS::Scalar,RHS::Scalar>, const LHS, const RHS>"\
|
"EIGEN_CWISE_PRODUCT_RETURN_TYPE(LHS,RHS)=CwiseBinaryOp<internal::scalar_product_op<LHS::Scalar,RHS::Scalar>, const LHS, const RHS>"\
|
||||||
|
Loading…
x
Reference in New Issue
Block a user