Go to the documentation of this file.
10 #ifndef EIGEN_SPARSEASSIGN_H
11 #define EIGEN_SPARSEASSIGN_H
15 template<
typename Derived>
16 template<
typename OtherDerived>
23 template<
typename Derived>
24 template<
typename OtherDerived>
32 template<
typename Derived>
33 template<
typename OtherDerived>
42 template<
typename Derived>
70 template<
typename DstXprType,
typename SrcXprType>
77 SrcEvaluatorType srcEvaluator(src);
80 const Index outerEvaluationSize = (SrcEvaluatorType::Flags&
RowMajorBit) ? src.rows() : src.cols();
81 if ((!transpose) && src.isRValue())
84 dst.resize(src.rows(), src.cols());
86 dst.reserve((
std::max)(src.rows(),src.cols())*2);
87 for (
Index j=0; j<outerEvaluationSize; ++j)
90 for (
typename SrcEvaluatorType::InnerIterator it(srcEvaluator, j); it; ++it)
93 dst.insertBackByOuterInner(j,it.index()) = v;
103 "the transpose operation is supposed to be handled in SparseMatrix::operator=");
108 DstXprType temp(src.rows(), src.cols());
110 temp.reserve((
std::max)(src.rows(),src.cols())*2);
111 for (
Index j=0; j<outerEvaluationSize; ++j)
114 for (
typename SrcEvaluatorType::InnerIterator it(srcEvaluator, j); it; ++it)
117 temp.insertBackByOuterInner(Flip?it.index():j,Flip?j:it.index()) = v;
122 dst = temp.markAsRValue();
127 template<
typename DstXprType,
typename SrcXprType,
typename Functor>
137 template<
typename DstXprType,
typename SrcXprType,
typename Functor>
140 static void run(DstXprType &dst,
const SrcXprType &src,
const Functor &func)
150 for (
Index j=0; j<outerEvaluationSize; ++j)
152 func.assignCoeff(dstEval.coeffRef(i.row(),i.col()), i.value());
158 template<
typename DstXprType,
typename DecType,
typename RhsType,
typename Scalar>
166 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
167 dst.resize(dstRows, dstCols);
169 src.
dec()._solve_impl(src.
rhs(), dst);
177 template<
typename DstXprType,
typename SrcXprType,
typename Functor>
184 template<
int Options>
187 Index dstRows = src.rows();
188 Index dstCols = src.cols();
189 if((dst.
rows()!=dstRows) || (dst.
cols()!=dstCols))
190 dst.
resize(dstRows, dstCols);
200 template<
typename DstDerived>
203 dst.diagonal() = src.diagonal();
207 { dst.diagonal() += src.diagonal(); }
210 { dst.diagonal() -= src.diagonal(); }
216 #endif // EIGEN_SPARSEASSIGN_H
void resize(Index rows, Index cols)
Solve< DecType, RhsType > SrcXprType
static void run(DstXprType &dst, const SrcXprType &src, const internal::assign_op< Scalar, Scalar > &)
Array< Scalar, Dynamic, 1 > ArrayXS
A versatible sparse matrix representation.
EIGEN_DEVICE_FUNC Derived & derived()
static void run(SparseMatrix< Scalar, Options, StorageIndex > &dst, const SrcXprType &src, const internal::assign_op< typename DstXprType::Scalar, typename SrcXprType::Scalar > &)
const unsigned int RowMajorBit
EIGEN_DEVICE_FUNC Index cols() const
General-purpose arrays with easy API for coefficient-wise operations.
void assign_sparse_to_sparse(DstXprType &dst, const SrcXprType &src)
Derived & operator=(const EigenBase< OtherDerived > &other)
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void call_assignment_no_alias(Dst &dst, const Src &src, const Func &func)
const EIGEN_DEVICE_FUNC Decomposition & dec() const
const EIGEN_DEVICE_FUNC RhsType & rhs() const
EIGEN_DEVICE_FUNC void evalTo(Dest &dst) const
DstXprType::StorageIndex StorageIndex
DstXprType::Scalar Scalar
const Scalar * valuePtr() const
static void run(DstXprType &dst, const SrcXprType &src, const internal::add_assign_op< typename DstXprType::Scalar, typename SrcXprType::Scalar > &)
Array< StorageIndex, Dynamic, 1 > ArrayXI
const StorageIndex * innerIndexPtr() const
static void run(DstXprType &dst, const SrcXprType &src, const Functor &func)
static void run(DstXprType &dst, const SrcXprType &src, const internal::sub_assign_op< typename DstXprType::Scalar, typename SrcXprType::Scalar > &)
static void run(DstXprType &dst, const SrcXprType &src, const internal::assign_op< typename DstXprType::Scalar, typename SrcXprType::Scalar > &)
A matrix or vector expression mapping an existing array of data.
EIGEN_DEVICE_FUNC Index rows() const
const StorageIndex * outerIndexPtr() const
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void resize_if_allowed(DstXprType &dst, const SrcXprType &src, const Functor &)
Pseudo expression representing a solving operation.
void run(Expr &expr, Dev &dev)
Base class of any sparse matrices or sparse expressions.
const Derived & derived() const
static constexpr size_t size(Tuple< Args... > &)
Provides access to the number of elements in a tuple as a compile-time constant expression.
const int OuterRandomAccessPattern
static void run(SparseMatrixBase< DstDerived > &dst, const SrcXprType &src, const internal::assign_op< typename DstXprType::Scalar, typename SrcXprType::Scalar > &)
void resizeNonZeros(Index size)
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:15