2009-11-21 01:20:55 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
|
// for linear algebra.
|
|
|
|
|
//
|
Relax mixing-type constraints for binary coefficient-wise operators:
- Replace internal::scalar_product_traits<A,B> by Eigen::ScalarBinaryOpTraits<A,B,OP>
- Remove the "functor_is_product_like" helper (was pretty ugly)
- Currently, OP is not used, but it is available to the user for fine grained tuning
- Currently, only the following operators have been generalized: *,/,+,-,=,*=,/=,+=,-=
- TODO: generalize all other binray operators (comparisons,pow,etc.)
- TODO: handle "scalar op array" operators (currently only * is handled)
- TODO: move the handling of the "void" scalar type to ScalarBinaryOpTraits
2016-06-06 21:11:41 +08:00
|
|
|
// Copyright (C) 2008-2016 Gael Guennebaud <gael.guennebaud@inria.fr>
|
2009-11-21 01:20:55 +08:00
|
|
|
// Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
|
|
|
|
|
//
|
2012-07-14 02:42:47 +08:00
|
|
|
// 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/.
|
2009-11-21 01:20:55 +08:00
|
|
|
|
|
|
|
|
// This file is a base class plugin containing common coefficient wise functions.
|
|
|
|
|
|
|
|
|
|
/** \returns an expression of the difference of \c *this and \a other
|
|
|
|
|
*
|
2021-09-23 00:15:06 +08:00
|
|
|
* \note If you want to subtract a given scalar from all coefficients, see Cwise::operator-().
|
2009-11-21 01:20:55 +08:00
|
|
|
*
|
2010-04-19 10:14:55 +08:00
|
|
|
* \sa class CwiseBinaryOp, operator-=()
|
2009-11-21 01:20:55 +08:00
|
|
|
*/
|
2016-06-10 21:05:43 +08:00
|
|
|
EIGEN_MAKE_CWISE_BINARY_OP(operator-,difference)
|
2009-11-21 01:20:55 +08:00
|
|
|
|
|
|
|
|
/** \returns an expression of the sum of \c *this and \a other
|
|
|
|
|
*
|
|
|
|
|
* \note If you want to add a given scalar to all coefficients, see Cwise::operator+().
|
|
|
|
|
*
|
2010-04-19 10:14:55 +08:00
|
|
|
* \sa class CwiseBinaryOp, operator+=()
|
2009-11-21 01:20:55 +08:00
|
|
|
*/
|
2016-06-10 21:05:43 +08:00
|
|
|
EIGEN_MAKE_CWISE_BINARY_OP(operator+,sum)
|
2009-11-21 01:20:55 +08:00
|
|
|
|
|
|
|
|
/** \returns an expression of a custom coefficient-wise operator \a func of *this and \a other
|
|
|
|
|
*
|
|
|
|
|
* The template parameter \a CustomBinaryOp is the type of the functor
|
|
|
|
|
* of the custom operator (see class CwiseBinaryOp for an example)
|
|
|
|
|
*
|
|
|
|
|
* Here is an example illustrating the use of custom functors:
|
|
|
|
|
* \include class_CwiseBinaryOp.cpp
|
|
|
|
|
* Output: \verbinclude class_CwiseBinaryOp.out
|
|
|
|
|
*
|
2010-08-23 18:44:51 +08:00
|
|
|
* \sa class CwiseBinaryOp, operator+(), operator-(), cwiseProduct()
|
2009-11-21 01:20:55 +08:00
|
|
|
*/
|
|
|
|
|
template<typename CustomBinaryOp, typename OtherDerived>
|
2022-09-17 05:14:29 +08:00
|
|
|
EIGEN_DEVICE_FUNC
|
2011-01-24 21:27:06 +08:00
|
|
|
EIGEN_STRONG_INLINE const CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>
|
2009-11-21 01:20:55 +08:00
|
|
|
binaryExpr(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other, const CustomBinaryOp& func = CustomBinaryOp()) const
|
|
|
|
|
{
|
2011-01-24 21:27:06 +08:00
|
|
|
return CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>(derived(), other.derived(), func);
|
2009-11-21 01:20:55 +08:00
|
|
|
}
|
|
|
|
|
|
2016-06-14 17:26:57 +08:00
|
|
|
|
|
|
|
|
#ifndef EIGEN_PARSED_BY_DOXYGEN
|
2016-06-16 00:11:33 +08:00
|
|
|
EIGEN_MAKE_SCALAR_BINARY_OP(operator*,product)
|
2016-06-14 17:26:57 +08:00
|
|
|
#else
|
|
|
|
|
/** \returns an expression of \c *this scaled by the scalar factor \a scalar
|
|
|
|
|
*
|
|
|
|
|
* \tparam T is the scalar type of \a scalar. It must be compatible with the scalar type of the given expression.
|
|
|
|
|
*/
|
|
|
|
|
template<typename T>
|
2016-06-15 21:22:03 +08:00
|
|
|
const CwiseBinaryOp<internal::scalar_product_op<Scalar,T>,Derived,Constant<T> > operator*(const T& scalar) const;
|
2016-06-14 18:03:39 +08:00
|
|
|
/** \returns an expression of \a expr scaled by the scalar factor \a scalar
|
2016-06-14 17:26:57 +08:00
|
|
|
*
|
|
|
|
|
* \tparam T is the scalar type of \a scalar. It must be compatible with the scalar type of the given expression.
|
|
|
|
|
*/
|
|
|
|
|
template<typename T> friend
|
2016-06-15 21:22:03 +08:00
|
|
|
const CwiseBinaryOp<internal::scalar_product_op<T,Scalar>,Constant<T>,Derived> operator*(const T& scalar, const StorageBaseType& expr);
|
2016-06-14 17:26:57 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef EIGEN_PARSED_BY_DOXYGEN
|
2016-06-16 00:11:33 +08:00
|
|
|
EIGEN_MAKE_SCALAR_BINARY_OP_ONTHERIGHT(operator/,quotient)
|
2016-06-14 17:26:57 +08:00
|
|
|
#else
|
|
|
|
|
/** \returns an expression of \c *this divided by the scalar value \a scalar
|
|
|
|
|
*
|
|
|
|
|
* \tparam T is the scalar type of \a scalar. It must be compatible with the scalar type of the given expression.
|
|
|
|
|
*/
|
|
|
|
|
template<typename T>
|
2016-06-15 21:22:03 +08:00
|
|
|
const CwiseBinaryOp<internal::scalar_quotient_op<Scalar,T>,Derived,Constant<T> > operator/(const T& scalar) const;
|
2016-06-14 17:26:57 +08:00
|
|
|
#endif
|
2016-11-15 01:47:02 +08:00
|
|
|
|
|
|
|
|
/** \returns an expression of the coefficient-wise boolean \b and operator of \c *this and \a other
|
2023-02-18 09:23:47 +08:00
|
|
|
*
|
|
|
|
|
* Example: \include Cwise_boolean_and.cpp
|
|
|
|
|
* Output: \verbinclude Cwise_boolean_and.out
|
|
|
|
|
*
|
|
|
|
|
* \sa operator||(), select()
|
|
|
|
|
*/
|
|
|
|
|
template <typename OtherDerived>
|
|
|
|
|
EIGEN_DEVICE_FUNC inline const CwiseBinaryOp<internal::scalar_boolean_and_op<Scalar>, const Derived, const OtherDerived>
|
|
|
|
|
operator&&(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived>& other) const {
|
|
|
|
|
return CwiseBinaryOp<internal::scalar_boolean_and_op<Scalar>, const Derived, const OtherDerived>(derived(),
|
|
|
|
|
other.derived());
|
2016-11-15 01:47:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** \returns an expression of the coefficient-wise boolean \b or operator of \c *this and \a other
|
2023-02-18 09:23:47 +08:00
|
|
|
*
|
|
|
|
|
* Example: \include Cwise_boolean_or.cpp
|
|
|
|
|
* Output: \verbinclude Cwise_boolean_or.out
|
|
|
|
|
*
|
|
|
|
|
* \sa operator&&(), select()
|
|
|
|
|
*/
|
|
|
|
|
template <typename OtherDerived>
|
|
|
|
|
EIGEN_DEVICE_FUNC inline const CwiseBinaryOp<internal::scalar_boolean_or_op<Scalar>, const Derived, const OtherDerived>
|
|
|
|
|
operator||(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived>& other) const {
|
|
|
|
|
return CwiseBinaryOp<internal::scalar_boolean_or_op<Scalar>, const Derived, const OtherDerived>(derived(),
|
|
|
|
|
other.derived());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** \returns an expression of the bitwise \b and operator of \c *this and \a other
|
|
|
|
|
*
|
|
|
|
|
* \sa operator|(), operator^()
|
|
|
|
|
*/
|
|
|
|
|
template <typename OtherDerived>
|
|
|
|
|
EIGEN_DEVICE_FUNC inline const CwiseBinaryOp<internal::scalar_bitwise_and_op<Scalar>, const Derived, const OtherDerived>
|
|
|
|
|
operator&(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived>& other) const {
|
|
|
|
|
return CwiseBinaryOp<internal::scalar_bitwise_and_op<Scalar>, const Derived, const OtherDerived>(derived(),
|
|
|
|
|
other.derived());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** \returns an expression of the bitwise boolean \b or operator of \c *this and \a other
|
|
|
|
|
*
|
|
|
|
|
* \sa operator&(), operator^()
|
|
|
|
|
*/
|
|
|
|
|
template <typename OtherDerived>
|
|
|
|
|
EIGEN_DEVICE_FUNC inline const CwiseBinaryOp<internal::scalar_bitwise_or_op<Scalar>, const Derived, const OtherDerived>
|
|
|
|
|
operator|(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived>& other) const {
|
|
|
|
|
return CwiseBinaryOp<internal::scalar_bitwise_or_op<Scalar>, const Derived, const OtherDerived>(derived(),
|
|
|
|
|
other.derived());
|
2016-11-15 01:47:02 +08:00
|
|
|
}
|
2023-02-18 09:23:47 +08:00
|
|
|
|
|
|
|
|
/** \returns an expression of the bitwise xor operator of *this and \a other
|
|
|
|
|
* \sa operator&(), operator|()
|
|
|
|
|
*/
|
|
|
|
|
template <typename OtherDerived>
|
|
|
|
|
EIGEN_DEVICE_FUNC inline const CwiseBinaryOp<internal::scalar_bitwise_xor_op<Scalar>, const Derived, const OtherDerived>
|
|
|
|
|
operator^(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived>& other) const {
|
|
|
|
|
return CwiseBinaryOp<internal::scalar_bitwise_xor_op<Scalar>, const Derived, const OtherDerived>(derived(),
|
|
|
|
|
other.derived());
|
2023-03-11 00:53:22 +08:00
|
|
|
}
|