SparseCwiseBinaryOp.h
Go to the documentation of this file.
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2008-2014 Gael Guennebaud <gael.guennebaud@inria.fr>
5 //
6 // This Source Code Form is subject to the terms of the Mozilla
7 // Public License v. 2.0. If a copy of the MPL was not distributed
8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 
10 #ifndef EIGEN_SPARSE_CWISE_BINARY_OP_H
11 #define EIGEN_SPARSE_CWISE_BINARY_OP_H
12 
13 namespace Eigen {
14 
15 // Here we have to handle 3 cases:
16 // 1 - sparse op dense
17 // 2 - dense op sparse
18 // 3 - sparse op sparse
19 // We also need to implement a 4th iterator for:
20 // 4 - dense op dense
21 // Finally, we also need to distinguish between the product and other operations :
22 // configuration returned mode
23 // 1 - sparse op dense product sparse
24 // generic dense
25 // 2 - dense op sparse product sparse
26 // generic dense
27 // 3 - sparse op sparse product sparse
28 // generic sparse
29 // 4 - dense op dense product dense
30 // generic dense
31 //
32 // TODO to ease compiler job, we could specialize product/quotient with a scalar
33 // and fallback to cwise-unary evaluator using bind1st_op and bind2nd_op.
34 
35 template<typename BinaryOp, typename Lhs, typename Rhs>
36 class CwiseBinaryOpImpl<BinaryOp, Lhs, Rhs, Sparse>
37  : public SparseMatrixBase<CwiseBinaryOp<BinaryOp, Lhs, Rhs> >
38 {
39  public:
44  {
47  typename internal::traits<Rhs>::StorageKind>::value)
49  THE_STORAGE_ORDER_OF_BOTH_SIDES_MUST_MATCH);
50  }
51 };
52 
53 namespace internal {
54 
55 
56 // Generic "sparse OP sparse"
57 template<typename XprType> struct binary_sparse_evaluator;
58 
59 template<typename BinaryOp, typename Lhs, typename Rhs>
61  : evaluator_base<CwiseBinaryOp<BinaryOp, Lhs, Rhs> >
62 {
63 protected:
67  typedef typename traits<XprType>::Scalar Scalar;
68  typedef typename XprType::StorageIndex StorageIndex;
69 public:
70 
72  {
73  public:
74 
76  : m_lhsIter(aEval.m_lhsImpl,outer), m_rhsIter(aEval.m_rhsImpl,outer), m_functor(aEval.m_functor)
77  {
78  this->operator++();
79  }
80 
82  {
83  if (m_lhsIter && m_rhsIter && (m_lhsIter.index() == m_rhsIter.index()))
84  {
85  m_id = m_lhsIter.index();
86  m_value = m_functor(m_lhsIter.value(), m_rhsIter.value());
87  ++m_lhsIter;
88  ++m_rhsIter;
89  }
90  else if (m_lhsIter && (!m_rhsIter || (m_lhsIter.index() < m_rhsIter.index())))
91  {
92  m_id = m_lhsIter.index();
93  m_value = m_functor(m_lhsIter.value(), Scalar(0));
94  ++m_lhsIter;
95  }
96  else if (m_rhsIter && (!m_lhsIter || (m_lhsIter.index() > m_rhsIter.index())))
97  {
98  m_id = m_rhsIter.index();
99  m_value = m_functor(Scalar(0), m_rhsIter.value());
100  ++m_rhsIter;
101  }
102  else
103  {
104  m_value = 0; // this is to avoid a compilation warning
105  m_id = -1;
106  }
107  return *this;
108  }
109 
110  EIGEN_STRONG_INLINE Scalar value() const { return m_value; }
111 
112  EIGEN_STRONG_INLINE StorageIndex index() const { return m_id; }
113  EIGEN_STRONG_INLINE Index outer() const { return m_lhsIter.outer(); }
114  EIGEN_STRONG_INLINE Index row() const { return Lhs::IsRowMajor ? m_lhsIter.row() : index(); }
115  EIGEN_STRONG_INLINE Index col() const { return Lhs::IsRowMajor ? index() : m_lhsIter.col(); }
116 
117  EIGEN_STRONG_INLINE operator bool() const { return m_id>=0; }
118 
119  protected:
122  const BinaryOp& m_functor;
125  };
126 
127 
128  enum {
130  Flags = XprType::Flags
131  };
132 
133  explicit binary_evaluator(const XprType& xpr)
134  : m_functor(xpr.functor()),
135  m_lhsImpl(xpr.lhs()),
136  m_rhsImpl(xpr.rhs())
137  {
139  EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
140  }
141 
142  inline Index nonZerosEstimate() const {
143  return m_lhsImpl.nonZerosEstimate() + m_rhsImpl.nonZerosEstimate();
144  }
145 
146 protected:
147  const BinaryOp m_functor;
150 };
151 
152 // dense op sparse
153 template<typename BinaryOp, typename Lhs, typename Rhs>
155  : evaluator_base<CwiseBinaryOp<BinaryOp, Lhs, Rhs> >
156 {
157 protected:
160  typedef typename traits<XprType>::Scalar Scalar;
161  typedef typename XprType::StorageIndex StorageIndex;
162 public:
163 
165  {
166  enum { IsRowMajor = (int(Rhs::Flags)&RowMajorBit)==RowMajorBit };
167  public:
168 
170  : m_lhsEval(aEval.m_lhsImpl), m_rhsIter(aEval.m_rhsImpl,outer), m_functor(aEval.m_functor), m_value(0), m_id(-1), m_innerSize(aEval.m_expr.rhs().innerSize())
171  {
172  this->operator++();
173  }
174 
176  {
177  ++m_id;
178  if(m_id<m_innerSize)
179  {
180  Scalar lhsVal = m_lhsEval.coeff(IsRowMajor?m_rhsIter.outer():m_id,
181  IsRowMajor?m_id:m_rhsIter.outer());
182  if(m_rhsIter && m_rhsIter.index()==m_id)
183  {
184  m_value = m_functor(lhsVal, m_rhsIter.value());
185  ++m_rhsIter;
186  }
187  else
188  m_value = m_functor(lhsVal, Scalar(0));
189  }
190 
191  return *this;
192  }
193 
194  EIGEN_STRONG_INLINE Scalar value() const { eigen_internal_assert(m_id<m_innerSize); return m_value; }
195 
196  EIGEN_STRONG_INLINE StorageIndex index() const { return m_id; }
197  EIGEN_STRONG_INLINE Index outer() const { return m_rhsIter.outer(); }
198  EIGEN_STRONG_INLINE Index row() const { return IsRowMajor ? m_rhsIter.outer() : m_id; }
199  EIGEN_STRONG_INLINE Index col() const { return IsRowMajor ? m_id : m_rhsIter.outer(); }
200 
201  EIGEN_STRONG_INLINE operator bool() const { return m_id<m_innerSize; }
202 
203  protected:
206  const BinaryOp& m_functor;
210  };
211 
212 
213  enum {
215  // Expose storage order of the sparse expression
216  Flags = (XprType::Flags & ~RowMajorBit) | (int(Rhs::Flags)&RowMajorBit)
217  };
218 
219  explicit binary_evaluator(const XprType& xpr)
220  : m_functor(xpr.functor()),
221  m_lhsImpl(xpr.lhs()),
222  m_rhsImpl(xpr.rhs()),
223  m_expr(xpr)
224  {
226  EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
227  }
228 
229  inline Index nonZerosEstimate() const {
230  return m_expr.size();
231  }
232 
233 protected:
234  const BinaryOp m_functor;
237  const XprType &m_expr;
238 };
239 
240 // sparse op dense
241 template<typename BinaryOp, typename Lhs, typename Rhs>
243  : evaluator_base<CwiseBinaryOp<BinaryOp, Lhs, Rhs> >
244 {
245 protected:
248  typedef typename traits<XprType>::Scalar Scalar;
249  typedef typename XprType::StorageIndex StorageIndex;
250 public:
251 
253  {
254  enum { IsRowMajor = (int(Lhs::Flags)&RowMajorBit)==RowMajorBit };
255  public:
256 
258  : m_lhsIter(aEval.m_lhsImpl,outer), m_rhsEval(aEval.m_rhsImpl), m_functor(aEval.m_functor), m_value(0), m_id(-1), m_innerSize(aEval.m_expr.lhs().innerSize())
259  {
260  this->operator++();
261  }
262 
264  {
265  ++m_id;
266  if(m_id<m_innerSize)
267  {
268  Scalar rhsVal = m_rhsEval.coeff(IsRowMajor?m_lhsIter.outer():m_id,
269  IsRowMajor?m_id:m_lhsIter.outer());
270  if(m_lhsIter && m_lhsIter.index()==m_id)
271  {
272  m_value = m_functor(m_lhsIter.value(), rhsVal);
273  ++m_lhsIter;
274  }
275  else
276  m_value = m_functor(Scalar(0),rhsVal);
277  }
278 
279  return *this;
280  }
281 
282  EIGEN_STRONG_INLINE Scalar value() const { eigen_internal_assert(m_id<m_innerSize); return m_value; }
283 
284  EIGEN_STRONG_INLINE StorageIndex index() const { return m_id; }
285  EIGEN_STRONG_INLINE Index outer() const { return m_lhsIter.outer(); }
286  EIGEN_STRONG_INLINE Index row() const { return IsRowMajor ? m_lhsIter.outer() : m_id; }
287  EIGEN_STRONG_INLINE Index col() const { return IsRowMajor ? m_id : m_lhsIter.outer(); }
288 
289  EIGEN_STRONG_INLINE operator bool() const { return m_id<m_innerSize; }
290 
291  protected:
294  const BinaryOp& m_functor;
298  };
299 
300 
301  enum {
303  // Expose storage order of the sparse expression
304  Flags = (XprType::Flags & ~RowMajorBit) | (int(Lhs::Flags)&RowMajorBit)
305  };
306 
307  explicit binary_evaluator(const XprType& xpr)
308  : m_functor(xpr.functor()),
309  m_lhsImpl(xpr.lhs()),
310  m_rhsImpl(xpr.rhs()),
311  m_expr(xpr)
312  {
314  EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
315  }
316 
317  inline Index nonZerosEstimate() const {
318  return m_expr.size();
319  }
320 
321 protected:
322  const BinaryOp m_functor;
325  const XprType &m_expr;
326 };
327 
328 template<typename T,
329  typename LhsKind = typename evaluator_traits<typename T::Lhs>::Kind,
330  typename RhsKind = typename evaluator_traits<typename T::Rhs>::Kind,
331  typename LhsScalar = typename traits<typename T::Lhs>::Scalar,
332  typename RhsScalar = typename traits<typename T::Rhs>::Scalar> struct sparse_conjunction_evaluator;
333 
334 // "sparse .* sparse"
335 template<typename T1, typename T2, typename Lhs, typename Rhs>
337  : sparse_conjunction_evaluator<CwiseBinaryOp<scalar_product_op<T1,T2>, Lhs, Rhs> >
338 {
341  explicit binary_evaluator(const XprType& xpr) : Base(xpr) {}
342 };
343 // "dense .* sparse"
344 template<typename T1, typename T2, typename Lhs, typename Rhs>
346  : sparse_conjunction_evaluator<CwiseBinaryOp<scalar_product_op<T1,T2>, Lhs, Rhs> >
347 {
350  explicit binary_evaluator(const XprType& xpr) : Base(xpr) {}
351 };
352 // "sparse .* dense"
353 template<typename T1, typename T2, typename Lhs, typename Rhs>
355  : sparse_conjunction_evaluator<CwiseBinaryOp<scalar_product_op<T1,T2>, Lhs, Rhs> >
356 {
359  explicit binary_evaluator(const XprType& xpr) : Base(xpr) {}
360 };
361 
362 // "sparse ./ dense"
363 template<typename T1, typename T2, typename Lhs, typename Rhs>
365  : sparse_conjunction_evaluator<CwiseBinaryOp<scalar_quotient_op<T1,T2>, Lhs, Rhs> >
366 {
369  explicit binary_evaluator(const XprType& xpr) : Base(xpr) {}
370 };
371 
372 // "sparse && sparse"
373 template<typename Lhs, typename Rhs>
375  : sparse_conjunction_evaluator<CwiseBinaryOp<scalar_boolean_and_op, Lhs, Rhs> >
376 {
379  explicit binary_evaluator(const XprType& xpr) : Base(xpr) {}
380 };
381 // "dense && sparse"
382 template<typename Lhs, typename Rhs>
384  : sparse_conjunction_evaluator<CwiseBinaryOp<scalar_boolean_and_op, Lhs, Rhs> >
385 {
388  explicit binary_evaluator(const XprType& xpr) : Base(xpr) {}
389 };
390 // "sparse && dense"
391 template<typename Lhs, typename Rhs>
393  : sparse_conjunction_evaluator<CwiseBinaryOp<scalar_boolean_and_op, Lhs, Rhs> >
394 {
397  explicit binary_evaluator(const XprType& xpr) : Base(xpr) {}
398 };
399 
400 // "sparse ^ sparse"
401 template<typename XprType>
403  : evaluator_base<XprType>
404 {
405 protected:
406  typedef typename XprType::Functor BinaryOp;
407  typedef typename XprType::Lhs LhsArg;
408  typedef typename XprType::Rhs RhsArg;
411  typedef typename XprType::StorageIndex StorageIndex;
412  typedef typename traits<XprType>::Scalar Scalar;
413 public:
414 
416  {
417  public:
418 
420  : m_lhsIter(aEval.m_lhsImpl,outer), m_rhsIter(aEval.m_rhsImpl,outer), m_functor(aEval.m_functor)
421  {
422  while (m_lhsIter && m_rhsIter && (m_lhsIter.index() != m_rhsIter.index()))
423  {
424  if (m_lhsIter.index() < m_rhsIter.index())
425  ++m_lhsIter;
426  else
427  ++m_rhsIter;
428  }
429  }
430 
432  {
433  ++m_lhsIter;
434  ++m_rhsIter;
435  while (m_lhsIter && m_rhsIter && (m_lhsIter.index() != m_rhsIter.index()))
436  {
437  if (m_lhsIter.index() < m_rhsIter.index())
438  ++m_lhsIter;
439  else
440  ++m_rhsIter;
441  }
442  return *this;
443  }
444 
445  EIGEN_STRONG_INLINE Scalar value() const { return m_functor(m_lhsIter.value(), m_rhsIter.value()); }
446 
447  EIGEN_STRONG_INLINE StorageIndex index() const { return m_lhsIter.index(); }
448  EIGEN_STRONG_INLINE Index outer() const { return m_lhsIter.outer(); }
449  EIGEN_STRONG_INLINE Index row() const { return m_lhsIter.row(); }
450  EIGEN_STRONG_INLINE Index col() const { return m_lhsIter.col(); }
451 
452  EIGEN_STRONG_INLINE operator bool() const { return (m_lhsIter && m_rhsIter); }
453 
454  protected:
458  };
459 
460 
461  enum {
463  Flags = XprType::Flags
464  };
465 
466  explicit sparse_conjunction_evaluator(const XprType& xpr)
467  : m_functor(xpr.functor()),
468  m_lhsImpl(xpr.lhs()),
469  m_rhsImpl(xpr.rhs())
470  {
472  EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
473  }
474 
475  inline Index nonZerosEstimate() const {
476  return (std::min)(m_lhsImpl.nonZerosEstimate(), m_rhsImpl.nonZerosEstimate());
477  }
478 
479 protected:
483 };
484 
485 // "dense ^ sparse"
486 template<typename XprType>
488  : evaluator_base<XprType>
489 {
490 protected:
491  typedef typename XprType::Functor BinaryOp;
492  typedef typename XprType::Lhs LhsArg;
493  typedef typename XprType::Rhs RhsArg;
496  typedef typename XprType::StorageIndex StorageIndex;
497  typedef typename traits<XprType>::Scalar Scalar;
498 public:
499 
501  {
502  enum { IsRowMajor = (int(RhsArg::Flags)&RowMajorBit)==RowMajorBit };
503 
504  public:
505 
507  : m_lhsEval(aEval.m_lhsImpl), m_rhsIter(aEval.m_rhsImpl,outer), m_functor(aEval.m_functor), m_outer(outer)
508  {}
509 
511  {
512  ++m_rhsIter;
513  return *this;
514  }
515 
517  { return m_functor(m_lhsEval.coeff(IsRowMajor?m_outer:m_rhsIter.index(),IsRowMajor?m_rhsIter.index():m_outer), m_rhsIter.value()); }
518 
519  EIGEN_STRONG_INLINE StorageIndex index() const { return m_rhsIter.index(); }
520  EIGEN_STRONG_INLINE Index outer() const { return m_rhsIter.outer(); }
521  EIGEN_STRONG_INLINE Index row() const { return m_rhsIter.row(); }
522  EIGEN_STRONG_INLINE Index col() const { return m_rhsIter.col(); }
523 
524  EIGEN_STRONG_INLINE operator bool() const { return m_rhsIter; }
525 
526  protected:
530  const Index m_outer;
531  };
532 
533 
534  enum {
536  // Expose storage order of the sparse expression
537  Flags = (XprType::Flags & ~RowMajorBit) | (int(RhsArg::Flags)&RowMajorBit)
538  };
539 
540  explicit sparse_conjunction_evaluator(const XprType& xpr)
541  : m_functor(xpr.functor()),
542  m_lhsImpl(xpr.lhs()),
543  m_rhsImpl(xpr.rhs())
544  {
546  EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
547  }
548 
549  inline Index nonZerosEstimate() const {
550  return m_rhsImpl.nonZerosEstimate();
551  }
552 
553 protected:
557 };
558 
559 // "sparse ^ dense"
560 template<typename XprType>
562  : evaluator_base<XprType>
563 {
564 protected:
565  typedef typename XprType::Functor BinaryOp;
566  typedef typename XprType::Lhs LhsArg;
567  typedef typename XprType::Rhs RhsArg;
570  typedef typename XprType::StorageIndex StorageIndex;
571  typedef typename traits<XprType>::Scalar Scalar;
572 public:
573 
575  {
576  enum { IsRowMajor = (int(LhsArg::Flags)&RowMajorBit)==RowMajorBit };
577 
578  public:
579 
581  : m_lhsIter(aEval.m_lhsImpl,outer), m_rhsEval(aEval.m_rhsImpl), m_functor(aEval.m_functor), m_outer(outer)
582  {}
583 
585  {
586  ++m_lhsIter;
587  return *this;
588  }
589 
591  { return m_functor(m_lhsIter.value(),
592  m_rhsEval.coeff(IsRowMajor?m_outer:m_lhsIter.index(),IsRowMajor?m_lhsIter.index():m_outer)); }
593 
594  EIGEN_STRONG_INLINE StorageIndex index() const { return m_lhsIter.index(); }
595  EIGEN_STRONG_INLINE Index outer() const { return m_lhsIter.outer(); }
596  EIGEN_STRONG_INLINE Index row() const { return m_lhsIter.row(); }
597  EIGEN_STRONG_INLINE Index col() const { return m_lhsIter.col(); }
598 
599  EIGEN_STRONG_INLINE operator bool() const { return m_lhsIter; }
600 
601  protected:
605  const Index m_outer;
606  };
607 
608 
609  enum {
611  // Expose storage order of the sparse expression
612  Flags = (XprType::Flags & ~RowMajorBit) | (int(LhsArg::Flags)&RowMajorBit)
613  };
614 
615  explicit sparse_conjunction_evaluator(const XprType& xpr)
616  : m_functor(xpr.functor()),
617  m_lhsImpl(xpr.lhs()),
618  m_rhsImpl(xpr.rhs())
619  {
621  EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
622  }
623 
624  inline Index nonZerosEstimate() const {
625  return m_lhsImpl.nonZerosEstimate();
626  }
627 
628 protected:
632 };
633 
634 }
635 
636 /***************************************************************************
637 * Implementation of SparseMatrixBase and SparseCwise functions/operators
638 ***************************************************************************/
639 
640 template<typename Derived>
641 template<typename OtherDerived>
643 {
645  return derived();
646 }
647 
648 template<typename Derived>
649 template<typename OtherDerived>
651 {
653  return derived();
654 }
655 
656 template<typename Derived>
657 template<typename OtherDerived>
658 EIGEN_STRONG_INLINE Derived &
660 {
661  return derived() = derived() - other.derived();
662 }
663 
664 template<typename Derived>
665 template<typename OtherDerived>
666 EIGEN_STRONG_INLINE Derived &
668 {
669  return derived() = derived() + other.derived();
670 }
671 
672 template<typename Derived>
673 template<typename OtherDerived>
675 {
677  return derived();
678 }
679 
680 template<typename Derived>
681 template<typename OtherDerived>
683 {
685  return derived();
686 }
687 
688 template<typename Derived>
689 template<typename OtherDerived>
692 {
693  return typename CwiseProductDenseReturnType<OtherDerived>::Type(derived(), other.derived());
694 }
695 
696 template<typename DenseDerived, typename SparseDerived>
699 {
700  return CwiseBinaryOp<internal::scalar_sum_op<typename DenseDerived::Scalar,typename SparseDerived::Scalar>, const DenseDerived, const SparseDerived>(a.derived(), b.derived());
701 }
702 
703 template<typename SparseDerived, typename DenseDerived>
704 EIGEN_STRONG_INLINE const CwiseBinaryOp<internal::scalar_sum_op<typename SparseDerived::Scalar,typename DenseDerived::Scalar>, const SparseDerived, const DenseDerived>
706 {
707  return CwiseBinaryOp<internal::scalar_sum_op<typename SparseDerived::Scalar,typename DenseDerived::Scalar>, const SparseDerived, const DenseDerived>(a.derived(), b.derived());
708 }
709 
710 template<typename DenseDerived, typename SparseDerived>
711 EIGEN_STRONG_INLINE const CwiseBinaryOp<internal::scalar_difference_op<typename DenseDerived::Scalar,typename SparseDerived::Scalar>, const DenseDerived, const SparseDerived>
713 {
714  return CwiseBinaryOp<internal::scalar_difference_op<typename DenseDerived::Scalar,typename SparseDerived::Scalar>, const DenseDerived, const SparseDerived>(a.derived(), b.derived());
715 }
716 
717 template<typename SparseDerived, typename DenseDerived>
718 EIGEN_STRONG_INLINE const CwiseBinaryOp<internal::scalar_difference_op<typename SparseDerived::Scalar,typename DenseDerived::Scalar>, const SparseDerived, const DenseDerived>
720 {
721  return CwiseBinaryOp<internal::scalar_difference_op<typename SparseDerived::Scalar,typename DenseDerived::Scalar>, const SparseDerived, const DenseDerived>(a.derived(), b.derived());
722 }
723 
724 } // end namespace Eigen
725 
726 #endif // EIGEN_SPARSE_CWISE_BINARY_OP_H
Eigen::SparseMatrixBase::cwiseProduct
const EIGEN_STRONG_INLINE CwiseProductDenseReturnType< OtherDerived >::Type cwiseProduct(const MatrixBase< OtherDerived > &other) const
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::RhsIterator
evaluator< RhsArg >::InnerIterator RhsIterator
Definition: SparseCwiseBinaryOp.h:410
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::InnerIterator::m_outer
const Index m_outer
Definition: SparseCwiseBinaryOp.h:605
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::InnerIterator::InnerIterator
EIGEN_STRONG_INLINE InnerIterator(const sparse_conjunction_evaluator &aEval, Index outer)
Definition: SparseCwiseBinaryOp.h:506
Eigen::CwiseBinaryOpImpl
Definition: CwiseBinaryOp.h:55
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::value
EIGEN_STRONG_INLINE Scalar value() const
Definition: SparseCwiseBinaryOp.h:282
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::InnerIterator
EIGEN_STRONG_INLINE InnerIterator(const binary_evaluator &aEval, Index outer)
Definition: SparseCwiseBinaryOp.h:169
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs >, IndexBased, IteratorBased >::binary_evaluator
binary_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:388
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::InnerIterator::row
EIGEN_STRONG_INLINE Index row() const
Definition: SparseCwiseBinaryOp.h:449
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::sparse_conjunction_evaluator
sparse_conjunction_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:615
Eigen
Definition: common.h:73
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::m_functor
const BinaryOp m_functor
Definition: SparseCwiseBinaryOp.h:147
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs >, IteratorBased, IndexBased >::binary_evaluator
binary_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:359
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::InnerIterator::operator++
EIGEN_STRONG_INLINE InnerIterator & operator++()
Definition: SparseCwiseBinaryOp.h:584
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::InnerIterator::m_functor
const BinaryOp & m_functor
Definition: SparseCwiseBinaryOp.h:604
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::RhsEvaluator
evaluator< RhsArg > RhsEvaluator
Definition: SparseCwiseBinaryOp.h:569
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::BinaryOp
XprType::Functor BinaryOp
Definition: SparseCwiseBinaryOp.h:565
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::InnerIterator::index
EIGEN_STRONG_INLINE StorageIndex index() const
Definition: SparseCwiseBinaryOp.h:519
b
Scalar * b
Definition: cholesky.cpp:56
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs >, IndexBased, IteratorBased >::Base
sparse_conjunction_evaluator< XprType > Base
Definition: SparseCwiseBinaryOp.h:387
Eigen::EigenBase::derived
EIGEN_DEVICE_FUNC Derived & derived()
Definition: EigenBase.h:45
Eigen::internal::Rhs
@ Rhs
Definition: TensorContractionMapper.h:18
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs >, IndexBased, IteratorBased >::XprType
CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs > XprType
Definition: SparseCwiseBinaryOp.h:386
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::col
EIGEN_STRONG_INLINE Index col() const
Definition: SparseCwiseBinaryOp.h:199
Eigen::CwiseBinaryOp
Generic expression where a coefficient-wise binary operator is applied to two expressions.
Definition: CwiseBinaryOp.h:77
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::row
EIGEN_STRONG_INLINE Index row() const
Definition: SparseCwiseBinaryOp.h:286
Eigen::internal::scalar_quotient_op
Definition: BinaryFunctors.h:351
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs >, IteratorBased, IteratorBased >::Base
sparse_conjunction_evaluator< XprType > Base
Definition: SparseCwiseBinaryOp.h:378
Eigen::operator+
const EIGEN_STRONG_INLINE CwiseBinaryOp< internal::scalar_sum_op< typename DenseDerived::Scalar, typename SparseDerived::Scalar >, const DenseDerived, const SparseDerived > operator+(const MatrixBase< DenseDerived > &a, const SparseMatrixBase< SparseDerived > &b)
Definition: SparseCwiseBinaryOp.h:698
Eigen::SparseMatrixBase::operator-=
Derived & operator-=(const SparseMatrixBase< OtherDerived > &other)
Eigen::Sparse
Definition: Constants.h:494
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::nonZerosEstimate
Index nonZerosEstimate() const
Definition: SparseCwiseBinaryOp.h:549
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::InnerIterator::outer
EIGEN_STRONG_INLINE Index outer() const
Definition: SparseCwiseBinaryOp.h:520
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs >, IteratorBased, IteratorBased >::XprType
CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs > XprType
Definition: SparseCwiseBinaryOp.h:339
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs >, IndexBased, IteratorBased >::Base
sparse_conjunction_evaluator< XprType > Base
Definition: SparseCwiseBinaryOp.h:349
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::m_value
Scalar m_value
Definition: SparseCwiseBinaryOp.h:123
Eigen::EigenBase
Definition: EigenBase.h:29
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::InnerIterator::m_lhsIter
LhsIterator m_lhsIter
Definition: SparseCwiseBinaryOp.h:455
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::InnerIterator::m_rhsEval
const evaluator< RhsArg > & m_rhsEval
Definition: SparseCwiseBinaryOp.h:603
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::InnerIterator
EIGEN_STRONG_INLINE InnerIterator(const binary_evaluator &aEval, Index outer)
Definition: SparseCwiseBinaryOp.h:257
Eigen::RowMajorBit
const unsigned int RowMajorBit
Definition: Constants.h:61
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::InnerIterator::InnerIterator
EIGEN_STRONG_INLINE InnerIterator(const sparse_conjunction_evaluator &aEval, Index outer)
Definition: SparseCwiseBinaryOp.h:419
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs >, IndexBased, IteratorBased >::binary_evaluator
binary_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:350
Eigen::SparseMatrixBase::operator+=
Derived & operator+=(const SparseMatrixBase< OtherDerived > &other)
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::InnerIterator::m_functor
const BinaryOp & m_functor
Definition: SparseCwiseBinaryOp.h:529
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::InnerIterator::m_lhsEval
const LhsEvaluator & m_lhsEval
Definition: SparseCwiseBinaryOp.h:527
Eigen::internal::binary_evaluator
Definition: CoreEvaluators.h:61
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs >, IteratorBased, IndexBased >::binary_evaluator
binary_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:397
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::InnerIterator::outer
EIGEN_STRONG_INLINE Index outer() const
Definition: SparseCwiseBinaryOp.h:448
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::InnerIterator::col
EIGEN_STRONG_INLINE Index col() const
Definition: SparseCwiseBinaryOp.h:522
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::Scalar
traits< XprType >::Scalar Scalar
Definition: SparseCwiseBinaryOp.h:67
Eigen::operator-
const EIGEN_STRONG_INLINE CwiseBinaryOp< internal::scalar_difference_op< typename DenseDerived::Scalar, typename SparseDerived::Scalar >, const DenseDerived, const SparseDerived > operator-(const MatrixBase< DenseDerived > &a, const SparseMatrixBase< SparseDerived > &b)
Definition: SparseCwiseBinaryOp.h:712
Scalar
SCALAR Scalar
Definition: common.h:84
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs >, IteratorBased, IndexBased >::Base
sparse_conjunction_evaluator< XprType > Base
Definition: SparseCwiseBinaryOp.h:358
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::m_functor
const BinaryOp m_functor
Definition: SparseCwiseBinaryOp.h:322
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::InnerIterator::operator++
EIGEN_STRONG_INLINE InnerIterator & operator++()
Definition: SparseCwiseBinaryOp.h:431
Eigen::internal::call_assignment_no_alias
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void call_assignment_no_alias(Dst &dst, const Src &src, const Func &func)
Definition: AssignEvaluator.h:819
Eigen::internal::evaluator_base
Definition: CoreEvaluators.h:109
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::m_lhsImpl
evaluator< Lhs > m_lhsImpl
Definition: SparseCwiseBinaryOp.h:148
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::index
EIGEN_STRONG_INLINE StorageIndex index() const
Definition: SparseCwiseBinaryOp.h:284
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::binary_evaluator
binary_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:307
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::InnerIterator::m_outer
const Index m_outer
Definition: SparseCwiseBinaryOp.h:530
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::RhsIterator
evaluator< RhsArg >::InnerIterator RhsIterator
Definition: SparseCwiseBinaryOp.h:495
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::Scalar
traits< XprType >::Scalar Scalar
Definition: SparseCwiseBinaryOp.h:160
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::RhsIterator
evaluator< Rhs >::InnerIterator RhsIterator
Definition: SparseCwiseBinaryOp.h:158
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::outer
EIGEN_STRONG_INLINE Index outer() const
Definition: SparseCwiseBinaryOp.h:285
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::RhsIterator
evaluator< Rhs >::InnerIterator RhsIterator
Definition: SparseCwiseBinaryOp.h:65
Eigen::internal::scalar_product_op
Definition: BinaryFunctors.h:76
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::StorageIndex
XprType::StorageIndex StorageIndex
Definition: SparseCwiseBinaryOp.h:68
eigen_internal_assert
#define eigen_internal_assert(x)
Definition: Macros.h:585
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::LhsIterator
evaluator< LhsArg >::InnerIterator LhsIterator
Definition: SparseCwiseBinaryOp.h:568
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::row
EIGEN_STRONG_INLINE Index row() const
Definition: SparseCwiseBinaryOp.h:114
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::sparse_conjunction_evaluator
sparse_conjunction_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:466
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::m_functor
const BinaryOp m_functor
Definition: SparseCwiseBinaryOp.h:554
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::m_lhsEval
const evaluator< Lhs > & m_lhsEval
Definition: SparseCwiseBinaryOp.h:204
Eigen::DiagonalBase::derived
const EIGEN_DEVICE_FUNC Derived & derived() const
Definition: DiagonalMatrix.h:41
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::LhsIterator
evaluator< Lhs >::InnerIterator LhsIterator
Definition: SparseCwiseBinaryOp.h:246
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::nonZerosEstimate
Index nonZerosEstimate() const
Definition: SparseCwiseBinaryOp.h:475
EIGEN_SPARSE_PUBLIC_INTERFACE
#define EIGEN_SPARSE_PUBLIC_INTERFACE(Derived)
Definition: SparseUtil.h:43
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::col
EIGEN_STRONG_INLINE Index col() const
Definition: SparseCwiseBinaryOp.h:115
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::Scalar
traits< XprType >::Scalar Scalar
Definition: SparseCwiseBinaryOp.h:248
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::m_id
StorageIndex m_id
Definition: SparseCwiseBinaryOp.h:208
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::LhsIterator
evaluator< Lhs >::InnerIterator LhsIterator
Definition: SparseCwiseBinaryOp.h:64
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::m_rhsEval
const evaluator< Rhs > & m_rhsEval
Definition: SparseCwiseBinaryOp.h:293
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs >, IteratorBased, IteratorBased >::binary_evaluator
binary_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:379
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs >, IteratorBased, IteratorBased >::binary_evaluator
binary_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:341
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::m_lhsIter
LhsIterator m_lhsIter
Definition: SparseCwiseBinaryOp.h:292
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::m_rhsImpl
evaluator< RhsArg > m_rhsImpl
Definition: SparseCwiseBinaryOp.h:631
Eigen::internal::sparse_conjunction_evaluator
Definition: SparseCwiseBinaryOp.h:332
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::LhsIterator
evaluator< LhsArg >::InnerIterator LhsIterator
Definition: SparseCwiseBinaryOp.h:409
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs >, IteratorBased, IteratorBased >::Base
sparse_conjunction_evaluator< XprType > Base
Definition: SparseCwiseBinaryOp.h:340
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::m_rhsImpl
evaluator< Rhs > m_rhsImpl
Definition: SparseCwiseBinaryOp.h:236
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::BinaryOp
XprType::Functor BinaryOp
Definition: SparseCwiseBinaryOp.h:406
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs >, IndexBased, IteratorBased >::XprType
CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs > XprType
Definition: SparseCwiseBinaryOp.h:348
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::InnerIterator::m_rhsIter
RhsIterator m_rhsIter
Definition: SparseCwiseBinaryOp.h:456
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::InnerIterator::value
EIGEN_STRONG_INLINE Scalar value() const
Definition: SparseCwiseBinaryOp.h:590
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::StorageIndex
XprType::StorageIndex StorageIndex
Definition: SparseCwiseBinaryOp.h:496
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::value
EIGEN_STRONG_INLINE Scalar value() const
Definition: SparseCwiseBinaryOp.h:110
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::binary_evaluator
binary_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:133
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::InnerIterator::outer
EIGEN_STRONG_INLINE Index outer() const
Definition: SparseCwiseBinaryOp.h:595
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::m_lhsImpl
evaluator< LhsArg > m_lhsImpl
Definition: SparseCwiseBinaryOp.h:630
Eigen::Architecture::Type
Type
Definition: Constants.h:461
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::LhsEvaluator
evaluator< LhsArg > LhsEvaluator
Definition: SparseCwiseBinaryOp.h:494
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::XprType
CwiseBinaryOp< BinaryOp, Lhs, Rhs > XprType
Definition: SparseCwiseBinaryOp.h:247
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::operator++
EIGEN_STRONG_INLINE InnerIterator & operator++()
Definition: SparseCwiseBinaryOp.h:81
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::m_rhsIter
RhsIterator m_rhsIter
Definition: SparseCwiseBinaryOp.h:121
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::value
EIGEN_STRONG_INLINE Scalar value() const
Definition: SparseCwiseBinaryOp.h:194
EIGEN_STRONG_INLINE
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
Eigen::internal::IteratorBased
Definition: Constants.h:529
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::index
EIGEN_STRONG_INLINE StorageIndex index() const
Definition: SparseCwiseBinaryOp.h:196
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::m_rhsImpl
evaluator< Rhs > m_rhsImpl
Definition: SparseCwiseBinaryOp.h:149
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::XprType
CwiseBinaryOp< BinaryOp, Lhs, Rhs > XprType
Definition: SparseCwiseBinaryOp.h:159
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs >, IteratorBased, IteratorBased >::XprType
CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs > XprType
Definition: SparseCwiseBinaryOp.h:377
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::sparse_conjunction_evaluator
sparse_conjunction_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:540
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::index
EIGEN_STRONG_INLINE StorageIndex index() const
Definition: SparseCwiseBinaryOp.h:112
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::m_lhsImpl
evaluator< LhsArg > m_lhsImpl
Definition: SparseCwiseBinaryOp.h:481
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::InnerIterator::value
EIGEN_STRONG_INLINE Scalar value() const
Definition: SparseCwiseBinaryOp.h:516
Eigen::internal::binary_sparse_evaluator
Definition: SparseCwiseBinaryOp.h:57
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_quotient_op< T1, T2 >, Lhs, Rhs >, IteratorBased, IndexBased >::binary_evaluator
binary_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:369
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::m_id
StorageIndex m_id
Definition: SparseCwiseBinaryOp.h:296
Eigen::internal::evaluator
Definition: CoreEvaluators.h:90
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::operator++
EIGEN_STRONG_INLINE InnerIterator & operator++()
Definition: SparseCwiseBinaryOp.h:263
Eigen::InnerIterator
An InnerIterator allows to loop over the element of any matrix expression.
Definition: CoreIterators.h:33
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs >, IteratorBased, IndexBased >::Base
sparse_conjunction_evaluator< XprType > Base
Definition: SparseCwiseBinaryOp.h:396
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::InnerIterator::row
EIGEN_STRONG_INLINE Index row() const
Definition: SparseCwiseBinaryOp.h:521
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::m_rhsImpl
evaluator< Rhs > m_rhsImpl
Definition: SparseCwiseBinaryOp.h:324
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::InnerIterator::value
EIGEN_STRONG_INLINE Scalar value() const
Definition: SparseCwiseBinaryOp.h:445
int
return int(ret)+1
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::nonZerosEstimate
Index nonZerosEstimate() const
Definition: SparseCwiseBinaryOp.h:142
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::m_lhsImpl
evaluator< Lhs > m_lhsImpl
Definition: SparseCwiseBinaryOp.h:323
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::m_innerSize
StorageIndex m_innerSize
Definition: SparseCwiseBinaryOp.h:209
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::m_value
Scalar m_value
Definition: SparseCwiseBinaryOp.h:295
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::InnerIterator::InnerIterator
EIGEN_STRONG_INLINE InnerIterator(const sparse_conjunction_evaluator &aEval, Index outer)
Definition: SparseCwiseBinaryOp.h:580
Eigen::internal::assign_op
Definition: AssignmentFunctors.h:21
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs >, IteratorBased, IndexBased >::XprType
CwiseBinaryOp< scalar_boolean_and_op, Lhs, Rhs > XprType
Definition: SparseCwiseBinaryOp.h:395
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::operator++
EIGEN_STRONG_INLINE InnerIterator & operator++()
Definition: SparseCwiseBinaryOp.h:175
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::m_functor
const BinaryOp m_functor
Definition: SparseCwiseBinaryOp.h:629
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::InnerIterator::operator++
EIGEN_STRONG_INLINE InnerIterator & operator++()
Definition: SparseCwiseBinaryOp.h:510
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::m_innerSize
StorageIndex m_innerSize
Definition: SparseCwiseBinaryOp.h:297
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::LhsArg
XprType::Lhs LhsArg
Definition: SparseCwiseBinaryOp.h:492
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::InnerIterator::m_rhsIter
RhsIterator m_rhsIter
Definition: SparseCwiseBinaryOp.h:528
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::BinaryOp
XprType::Functor BinaryOp
Definition: SparseCwiseBinaryOp.h:491
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::m_functor
const BinaryOp m_functor
Definition: SparseCwiseBinaryOp.h:234
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::m_rhsIter
RhsIterator m_rhsIter
Definition: SparseCwiseBinaryOp.h:205
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::m_value
Scalar m_value
Definition: SparseCwiseBinaryOp.h:207
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_quotient_op< T1, T2 >, Lhs, Rhs >, IteratorBased, IndexBased >::Base
sparse_conjunction_evaluator< XprType > Base
Definition: SparseCwiseBinaryOp.h:368
EIGEN_STATIC_ASSERT
#define EIGEN_STATIC_ASSERT(CONDITION, MSG)
Definition: StaticAssert.h:124
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::XprType
CwiseBinaryOp< BinaryOp, Lhs, Rhs > XprType
Definition: SparseCwiseBinaryOp.h:66
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::RhsArg
XprType::Rhs RhsArg
Definition: SparseCwiseBinaryOp.h:408
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::m_expr
const XprType & m_expr
Definition: SparseCwiseBinaryOp.h:237
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::RhsArg
XprType::Rhs RhsArg
Definition: SparseCwiseBinaryOp.h:567
a
Scalar * a
Definition: cholesky.cpp:26
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::m_id
StorageIndex m_id
Definition: SparseCwiseBinaryOp.h:124
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::RhsArg
XprType::Rhs RhsArg
Definition: SparseCwiseBinaryOp.h:493
Eigen::InnerIterator::index
EIGEN_STRONG_INLINE Index index() const
Definition: CoreIterators.h:52
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::m_lhsImpl
evaluator< LhsArg > m_lhsImpl
Definition: SparseCwiseBinaryOp.h:555
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::InnerIterator::m_lhsIter
LhsIterator m_lhsIter
Definition: SparseCwiseBinaryOp.h:602
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::Scalar
traits< XprType >::Scalar Scalar
Definition: SparseCwiseBinaryOp.h:497
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::binary_evaluator
binary_evaluator(const XprType &xpr)
Definition: SparseCwiseBinaryOp.h:219
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::m_functor
const BinaryOp & m_functor
Definition: SparseCwiseBinaryOp.h:122
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::m_lhsImpl
evaluator< Lhs > m_lhsImpl
Definition: SparseCwiseBinaryOp.h:235
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::Scalar
traits< XprType >::Scalar Scalar
Definition: SparseCwiseBinaryOp.h:412
Eigen::internal::sub_assign_op
Definition: AssignmentFunctors.h:67
Eigen::internal::sparse_conjunction_evaluator< XprType, IndexBased, IteratorBased >::m_rhsImpl
evaluator< RhsArg > m_rhsImpl
Definition: SparseCwiseBinaryOp.h:556
Eigen::internal::scalar_boolean_and_op
Definition: BinaryFunctors.h:382
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::InnerIterator::index
EIGEN_STRONG_INLINE StorageIndex index() const
Definition: SparseCwiseBinaryOp.h:447
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::nonZerosEstimate
Index nonZerosEstimate() const
Definition: SparseCwiseBinaryOp.h:624
Eigen::SparseMatrixBase
Base class of any sparse matrices or sparse expressions.
Definition: ForwardDeclarations.h:281
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::outer
EIGEN_STRONG_INLINE Index outer() const
Definition: SparseCwiseBinaryOp.h:113
Eigen::SparseMatrixBase::derived
const Derived & derived() const
Definition: SparseMatrixBase.h:138
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::row
EIGEN_STRONG_INLINE Index row() const
Definition: SparseCwiseBinaryOp.h:198
min
#define min(a, b)
Definition: datatypes.h:19
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::LhsArg
XprType::Lhs LhsArg
Definition: SparseCwiseBinaryOp.h:407
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_quotient_op< T1, T2 >, Lhs, Rhs >, IteratorBased, IndexBased >::XprType
CwiseBinaryOp< scalar_quotient_op< T1, T2 >, Lhs, Rhs > XprType
Definition: SparseCwiseBinaryOp.h:367
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::m_lhsIter
LhsIterator m_lhsIter
Definition: SparseCwiseBinaryOp.h:120
Eigen::internal::is_same
Definition: Meta.h:63
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::col
EIGEN_STRONG_INLINE Index col() const
Definition: SparseCwiseBinaryOp.h:287
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::InnerIterator::col
EIGEN_STRONG_INLINE Index col() const
Definition: SparseCwiseBinaryOp.h:450
Eigen::internal::functor_traits
Definition: XprHelper.h:146
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::outer
EIGEN_STRONG_INLINE Index outer() const
Definition: SparseCwiseBinaryOp.h:197
Eigen::internal::add_assign_op
Definition: AssignmentFunctors.h:46
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::StorageIndex
XprType::StorageIndex StorageIndex
Definition: SparseCwiseBinaryOp.h:249
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::InnerIterator::row
EIGEN_STRONG_INLINE Index row() const
Definition: SparseCwiseBinaryOp.h:596
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::StorageIndex
XprType::StorageIndex StorageIndex
Definition: SparseCwiseBinaryOp.h:570
internal
Definition: BandTriangularSolver.h:13
Eigen::internal::Lhs
@ Lhs
Definition: TensorContractionMapper.h:19
Eigen::MatrixBase
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:48
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::nonZerosEstimate
Index nonZerosEstimate() const
Definition: SparseCwiseBinaryOp.h:317
Eigen::CwiseBinaryOpImpl< BinaryOp, Lhs, Rhs, Sparse >::Derived
CwiseBinaryOp< BinaryOp, Lhs, Rhs > Derived
Definition: SparseCwiseBinaryOp.h:40
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::InnerIterator::m_functor
const BinaryOp & m_functor
Definition: SparseCwiseBinaryOp.h:457
EIGEN_INTERNAL_CHECK_COST_VALUE
#define EIGEN_INTERNAL_CHECK_COST_VALUE(C)
Definition: StaticAssert.h:215
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::LhsArg
XprType::Lhs LhsArg
Definition: SparseCwiseBinaryOp.h:566
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::InnerIterator::index
EIGEN_STRONG_INLINE StorageIndex index() const
Definition: SparseCwiseBinaryOp.h:594
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::InnerIterator::col
EIGEN_STRONG_INLINE Index col() const
Definition: SparseCwiseBinaryOp.h:597
Eigen::internal::IndexBased
Definition: Constants.h:526
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IteratorBased >::InnerIterator::InnerIterator
EIGEN_STRONG_INLINE InnerIterator(const binary_evaluator &aEval, Index outer)
Definition: SparseCwiseBinaryOp.h:75
Eigen::internal::binary_evaluator< CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs >, IteratorBased, IndexBased >::XprType
CwiseBinaryOp< scalar_product_op< T1, T2 >, Lhs, Rhs > XprType
Definition: SparseCwiseBinaryOp.h:357
Eigen::DiagonalBase
Definition: DiagonalMatrix.h:18
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IndexBased >::Scalar
traits< XprType >::Scalar Scalar
Definition: SparseCwiseBinaryOp.h:571
Eigen::internal::call_assignment
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void call_assignment(Dst &dst, const Src &src)
Definition: AssignEvaluator.h:780
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::InnerIterator::m_functor
const BinaryOp & m_functor
Definition: SparseCwiseBinaryOp.h:206
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::m_functor
const BinaryOp m_functor
Definition: SparseCwiseBinaryOp.h:480
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::m_rhsImpl
evaluator< RhsArg > m_rhsImpl
Definition: SparseCwiseBinaryOp.h:482
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::m_expr
const XprType & m_expr
Definition: SparseCwiseBinaryOp.h:325
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::nonZerosEstimate
Index nonZerosEstimate() const
Definition: SparseCwiseBinaryOp.h:229
Eigen::CwiseBinaryOpImpl< BinaryOp, Lhs, Rhs, Sparse >::Base
SparseMatrixBase< Derived > Base
Definition: SparseCwiseBinaryOp.h:41
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IndexBased, IteratorBased >::StorageIndex
XprType::StorageIndex StorageIndex
Definition: SparseCwiseBinaryOp.h:161
Eigen::internal::sparse_conjunction_evaluator< XprType, IteratorBased, IteratorBased >::StorageIndex
XprType::StorageIndex StorageIndex
Definition: SparseCwiseBinaryOp.h:411
Eigen::internal::binary_evaluator< CwiseBinaryOp< BinaryOp, Lhs, Rhs >, IteratorBased, IndexBased >::InnerIterator::m_functor
const BinaryOp & m_functor
Definition: SparseCwiseBinaryOp.h:294


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:17