35 #ifndef _BLAZE_MATH_EXPRESSIONS_DVECSVECOUTEREXPR_H_ 36 #define _BLAZE_MATH_EXPRESSIONS_DVECSVECOUTEREXPR_H_ 102 template<
typename VT1
146 template<
typename MT >
149 enum :
bool { value = useAssign };
159 template<
typename T1,
typename T2,
typename T3 >
160 struct UseVectorizedKernel {
162 T1::simdEnabled && T2::simdEnabled &&
175 template<
typename T1,
typename T2,
typename T3 >
176 struct UseDefaultKernel {
177 enum :
bool { value = !UseVectorizedKernel<T1,T2,T3>::value };
265 return Element( v_ * it_->value(), it_->index() );
285 return v_ * it_->value();
306 return it_ == rhs.
it_;
317 return it_ != rhs.
it_;
328 return it_ - rhs.
it_;
342 enum :
bool { smpAssignable =
false };
385 inline ReturnType
at(
size_t i,
size_t j )
const {
386 if( i >=
lhs_.size() ) {
389 if( j >=
rhs_.size() ) {
423 inline size_t rows() const noexcept {
444 return lhs_.size() *
rhs_.nonZeros();
456 return rhs_.nonZeros();
525 template<
typename T >
526 inline bool canAlias(
const T* alias )
const noexcept {
527 return (
lhs_.canAlias( alias ) ||
rhs_.canAlias( alias ) );
537 template<
typename T >
538 inline bool isAliased(
const T* alias )
const noexcept {
539 return (
lhs_.isAliased( alias ) ||
rhs_.isAliased( alias ) );
564 template<
typename MT >
583 const ConstIterator
begin( y.begin() );
584 const ConstIterator
end ( y.end() );
586 for(
size_t i=0UL; i<(~lhs).
rows(); ++i ) {
587 for( ConstIterator element=
begin; element!=
end; ++element ) {
588 (~lhs)(i,element->index()) = x[i] * element->
value();
608 template<
typename MT >
626 DVecSVecOuterExpr::selectAssignKernel( ~lhs, x, y );
645 template<
typename MT
653 const ConstIterator
begin( y.begin() );
654 const ConstIterator
end ( y.end() );
656 for( ConstIterator element=
begin; element!=
end; ++element ) {
657 for(
size_t i=0UL; i<(~A).
rows(); ++i ) {
658 (~A)(i,element->index()) = x[i] * element->
value();
679 template<
typename MT
689 const size_t M( (~A).
rows() );
691 const size_t ipos( remainder ? ( M &
size_t(-SIMDSIZE) ) : M );
694 const ConstIterator
begin( y.begin() );
695 const ConstIterator
end ( y.end() );
697 for( ConstIterator element=
begin; element!=
end; ++element )
703 for( ; i<ipos; i+=SIMDSIZE ) {
704 (~A).store( i, element->index(), x.load(i) * y1 );
706 for( ; remainder && i<M; ++i ) {
707 (~A)(i,element->index()) = x[i] * element->value();
729 template<
typename MT >
749 const ConstIterator
begin( y.begin() );
750 const ConstIterator
end ( y.end() );
755 for(
size_t i=0UL; i<x.size(); ++i ) {
757 for( ConstIterator element=
begin; element!=
end; ++element ) {
758 (~lhs).append( i, element->index(), x[i] * element->value() );
761 (~lhs).finalize( i );
780 template<
typename MT >
800 const ConstIterator
begin( y.begin() );
801 const ConstIterator
end ( y.end() );
810 for( ConstIterator element=
begin; element!=
end; ++element ) {
812 for( ; index < element->index(); ++index ) {
813 (~lhs).finalize( index );
815 for(
size_t i=0UL; i<(~lhs).
rows(); ++i ) {
816 (~lhs).append( i, element->index(), x[i] * element->value() );
818 (~lhs).finalize( index++ );
822 for( ; index < y.size(); ++index ) {
823 (~lhs).finalize( index );
845 template<
typename MT >
864 const ConstIterator
begin( y.begin() );
865 const ConstIterator
end ( y.end() );
867 for(
size_t i=0UL; i<(~lhs).
rows(); ++i ) {
868 for( ConstIterator element=
begin; element!=
end; ++element ) {
869 (~lhs)(i,element->index()) += x[i] * element->
value();
889 template<
typename MT >
907 DVecSVecOuterExpr::selectAddAssignKernel( ~lhs, x, y );
926 template<
typename MT
934 const ConstIterator
begin( y.begin() );
935 const ConstIterator
end ( y.end() );
937 for( ConstIterator element=
begin; element!=
end; ++element ) {
938 for(
size_t i=0UL; i<(~A).
rows(); ++i ) {
939 (~A)(i,element->index()) += x[i] * element->
value();
960 template<
typename MT
970 const size_t M( (~A).
rows() );
972 const size_t ipos( remainder ? ( M &
size_t(-SIMDSIZE) ) : M );
975 const ConstIterator
begin( y.begin() );
976 const ConstIterator
end ( y.end() );
978 for( ConstIterator element=
begin; element!=
end; ++element )
984 for( ; i<ipos; i+=SIMDSIZE ) {
985 (~A).store( i, element->index(), (~A).load(i,element->index()) + x.load(i) * y1 );
987 for( ; remainder && i<M; ++i ) {
988 (~A)(i,element->index()) += x[i] * element->value();
1015 template<
typename MT >
1034 const ConstIterator
begin( y.begin() );
1035 const ConstIterator
end ( y.end() );
1037 for(
size_t i=0UL; i<(~lhs).
rows(); ++i ) {
1038 for( ConstIterator element=
begin; element!=
end; ++element ) {
1039 (~lhs)(i,element->index()) -= x[i] * element->
value();
1059 template<
typename MT >
1077 DVecSVecOuterExpr::selectSubAssignKernel( ~lhs, x, y );
1096 template<
typename MT
1104 const ConstIterator
begin( y.begin() );
1105 const ConstIterator
end ( y.end() );
1107 for( ConstIterator element=
begin; element!=
end; ++element ) {
1108 for(
size_t i=0UL; i<(~A).
rows(); ++i ) {
1109 (~A)(i,element->index()) -= x[i] * element->
value();
1130 template<
typename MT
1140 const size_t M( (~A).
rows() );
1142 const size_t ipos( remainder ? ( M &
size_t(-SIMDSIZE) ) : M );
1145 const ConstIterator
begin( y.begin() );
1146 const ConstIterator
end ( y.end() );
1148 for( ConstIterator element=
begin; element!=
end; ++element )
1154 for( ; i<ipos; i+=SIMDSIZE ) {
1155 (~A).store( i, element->index(), (~A).load(i,element->index()) - x.load(i) * y1 );
1157 for( ; remainder && i<M; ++i ) {
1158 (~A)(i,element->index()) -= x[i] * element->value();
1227 template<
typename T1
1249 template<
typename VT1,
typename VT2 >
1250 struct Rows< DVecSVecOuterExpr<VT1,VT2> > :
public Size<VT1>
1266 template<
typename VT1,
typename VT2 >
1267 struct Columns< DVecSVecOuterExpr<VT1,VT2> > :
public Size<VT2>
1283 template<
typename VT1,
typename VT2,
bool AF >
1298 template<
typename VT1,
typename VT2 >
1312 template<
typename VT1,
typename VT2 >
OppositeType_< ResultType > OppositeType
Result type with opposite storage order for expression template evaluations.
Definition: DVecSVecOuterExpr.h:186
bool isAliased(const T *alias) const noexcept
Returns whether the expression is aliased with the given address alias.
Definition: DVecSVecOuterExpr.h:538
ReferenceType reference
Reference return type.
Definition: DVecSVecOuterExpr.h:235
Pointer difference type of the Blaze library.
Header file for auxiliary alias declarations.
Compile time check whether the given type is a computational expression template.This type trait clas...
Definition: IsComputation.h:72
Compile time check for numeric types.This type trait tests whether or not the given template paramete...
Definition: IsNumeric.h:79
constexpr bool useOptimizedKernels
Configuration switch for optimized kernels.This configuration switch enables/disables all optimized c...
Definition: Optimizations.h:84
LeftElement v_
Element of the left-hand side dense vector expression.
Definition: DVecSVecOuterExpr.h:334
IteratorCategory iterator_category
The iterator category.
Definition: DVecSVecOuterExpr.h:232
Compile time check whether the given type is a temporary vector or matrix type.This type trait class ...
Definition: IsTemporary.h:70
Header file for the Rows type trait.
Header file for the UNUSED_PARAMETER function template.
BLAZE_ALWAYS_INLINE size_t capacity(const Matrix< MT, SO > &matrix) noexcept
Returns the maximum capacity of the matrix.
Definition: Matrix.h:352
Header file for basic type definitions.
ReturnType_< VT2 > RN2
Return type of the right-hand side sparse vector expression.
Definition: DVecSVecOuterExpr.h:113
size_t columns() const noexcept
Returns the current number of columns of the matrix.
Definition: DVecSVecOuterExpr.h:433
#define BLAZE_CONSTRAINT_MUST_BE_COLUMN_VECTOR_TYPE(T)
Constraint on the data type.In case the given data type T is not a column dense or sparse vector type...
Definition: ColumnVector.h:61
Header file for the serial shim.
ElementType_< VT1 > ET1
Element type of the left-hand side dense vector expression.
Definition: DVecSVecOuterExpr.h:116
Expression object for dense vector-sparse vector outer products.The DVecSVecOuterExpr class represent...
Definition: DVecSVecOuterExpr.h:104
Header file for the ColumnExprTrait class template.
Header file for the IsSame and IsStrictlySame type traits.
const Element operator*() const
Direct access to the sparse matrix element at the current iterator position.
Definition: DVecSVecOuterExpr.h:264
Availability of a SIMD multiplication for the given data types.Depending on the available instruction...
Definition: HasSIMDMult.h:162
typename SIMDTrait< T >::Type SIMDTrait_
Auxiliary alias declaration for the SIMDTrait class template.The SIMDTrait_ alias declaration provide...
Definition: SIMDTrait.h:315
DVecSVecOuterExpr< VT1, VT2 > This
Type of this DVecSVecOuterExpr instance.
Definition: DVecSVecOuterExpr.h:184
ReturnType at(size_t i, size_t j) const
Checked access to the matrix elements.
Definition: DVecSVecOuterExpr.h:385
const DMatSerialExpr< MT, SO > serial(const DenseMatrix< MT, SO > &dm)
Forces the serial evaluation of the given dense matrix expression dm.
Definition: DMatSerialExpr.h:721
typename MultTrait< T1, T2 >::Type MultTrait_
Auxiliary alias declaration for the MultTrait class template.The MultTrait_ alias declaration provide...
Definition: MultTrait.h:245
Header file for the Computation base class.
Type relationship analysis.This class tests if the two data types A and B are equal. For this type comparison, the cv-qualifiers of both data types are ignored. If A and B are the same data type (ignoring the cv-qualifiers), then the value member constant is set to true, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to false, Type is FalseType, and the class derives from FalseType.
Definition: IsSame.h:138
System settings for performance optimizations.
typename T::ResultType ResultType_
Alias declaration for nested ResultType type definitions.The ResultType_ alias declaration provides a...
Definition: Aliases.h:323
ValueType & ReferenceType
Reference return type.
Definition: DVecSVecOuterExpr.h:228
ElementType_< VT2 > ET2
Element type of the right-hand side sparse vector expression.
Definition: DVecSVecOuterExpr.h:117
Base class for dense matrices.The DenseMatrix class is a base class for all dense matrix classes...
Definition: DenseMatrix.h:71
Base class for sparse matrices.The SparseMatrix class is a base class for all sparse matrix classes...
Definition: Forward.h:119
typename IfTrue< Condition, T1, T2 >::Type IfTrue_
Auxiliary alias declaration for the IfTrue class template.The IfTrue_ alias declaration provides a co...
Definition: If.h:109
typename T::ReturnType ReturnType_
Alias declaration for nested ReturnType type definitions.The ReturnType_ alias declaration provides a...
Definition: Aliases.h:343
IfTrue_< useAssign, const ResultType, const DVecSVecOuterExpr &> CompositeType
Data type for composite expression templates.
Definition: DVecSVecOuterExpr.h:194
Header file for the SparseMatrix base class.
Constraint on the transpose flag of vector types.
size_t nonZeros() const
Returns the number of non-zero elements in the sparse matrix.
Definition: DVecSVecOuterExpr.h:443
Constraint on the data type.
size_t index() const
Access to the current index of the sparse element.
Definition: DVecSVecOuterExpr.h:294
ConstIterator end(size_t i) const
Returns an iterator just past the last non-zero element of row i.
Definition: DVecSVecOuterExpr.h:413
typename MultExprTrait< T1, T2 >::Type MultExprTrait_
Auxiliary alias declaration for the MultExprTrait class template.The MultExprTrait_ alias declaration...
Definition: MultExprTrait.h:344
Header file for the MultExprTrait class template.
IteratorType it_
Iterator over the elements of the right-hand side sparse vector expression.
Definition: DVecSVecOuterExpr.h:335
typename T::CompositeType CompositeType_
Alias declaration for nested CompositeType type definitions.The CompositeType_ alias declaration prov...
Definition: Aliases.h:83
If_< IsExpression< VT2 >, const VT2, const VT2 &> RightOperand
Composite type of the right-hand side sparse vector expression.
Definition: DVecSVecOuterExpr.h:200
If_< IsComputation< VT2 >, const RT2, CT2 > RT
Type for the assignment of the right-hand side dense vector operand.
Definition: DVecSVecOuterExpr.h:206
Header file for the ValueIndexPair class.
ValueIndexPair< ElementType > Element
Element type of the sparse matrix expression.
Definition: DVecSVecOuterExpr.h:217
Header file for the IsTemporary type trait class.
If_< IsComputation< VT1 >, const RT1, CT1 > LT
Type for the assignment of the left-hand side dense vector operand.
Definition: DVecSVecOuterExpr.h:203
Header file for the multiplication trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the If class template.
DVecSVecOuterExpr(const VT1 &lhs, const VT2 &rhs) noexcept
Constructor for the DVecSVecOuterExpr class.
Definition: DVecSVecOuterExpr.h:356
Iterator over the elements of the dense vector-sparse vector outer product expression.
Definition: DVecSVecOuterExpr.h:212
const Element * ConstIterator
Iterator over constant elements.
Definition: CompressedMatrix.h:2939
ConstIterator lowerBound(size_t i, size_t j) const
Returns an iterator to the first index not less then the given index.
Definition: DVecSVecOuterExpr.h:480
bool canAlias(const T *alias) const noexcept
Returns whether the expression can alias with the given address alias.
Definition: DVecSVecOuterExpr.h:526
#define BLAZE_CONSTRAINT_MUST_FORM_VALID_VECTVECMULTEXPR(T1, T2)
Constraint on the data type.In case the given data types T1 and T2 do not form a valid vector/vector ...
Definition: VecTVecMultExpr.h:105
Compile time check for data types with padding.This type trait tests whether the given data type empl...
Definition: IsPadded.h:76
#define BLAZE_THROW_OUT_OF_RANGE(MESSAGE)
Macro for the emission of a std::out_of_range exception.This macro encapsulates the default way of Bl...
Definition: Exception.h:331
Header file for the Columns type trait.
bool operator!=(const ConstIterator &rhs) const
Inequality comparison between two ConstIterator objects.
Definition: DVecSVecOuterExpr.h:316
typename SubvectorExprTrait< VT, AF >::Type SubvectorExprTrait_
Auxiliary alias declaration for the SubvectorExprTrait type trait.The SubvectorExprTrait_ alias decla...
Definition: SubvectorExprTrait.h:133
typename T::ElementType ElementType_
Alias declaration for nested ElementType type definitions.The ElementType_ alias declaration provides...
Definition: Aliases.h:163
Header file for all SIMD functionality.
Base class for N-dimensional dense vectors.The DenseVector class is a base class for all arbitrarily ...
Definition: DenseVector.h:70
Evaluation of the expression type type of a submatrix operation.Via this type trait it is possible to...
Definition: SubmatrixExprTrait.h:80
TransposeType_< ResultType > TransposeType
Transpose type for expression template evaluations.
Definition: DVecSVecOuterExpr.h:187
#define BLAZE_CONSTRAINT_MUST_BE_SPARSE_VECTOR_TYPE(T)
Constraint on the data type.In case the given data type T is not a sparse, N-dimensional vector type...
Definition: SparseVector.h:61
Constraint on the data type.
ConstIterator_< RemoveReference_< RightOperand > > IteratorType
Iterator type of the sparse vector expression.
Definition: DVecSVecOuterExpr.h:223
Header file for the exception macros of the math module.
Evaluation of the expression type type of a row operation.Via this type trait it is possible to evalu...
Definition: RowExprTrait.h:79
bool operator==(const ConstIterator &rhs) const
Equality comparison between two ConstIterator objects.
Definition: DVecSVecOuterExpr.h:305
const IfTrue_< returnExpr, ExprReturnType, ElementType > ReturnType
Return type for expression template evaluations.
Definition: DVecSVecOuterExpr.h:191
Constraint on the data type.
Header file for the RowExprTrait class template.
Header file for all forward declarations for expression class templates.
Constraint on the data type.
Header file for the VecTVecMultExpr base class.
Header file for the EnableIf class template.
MultTrait_< RT1, RT2 > ResultType
Result type for expression template evaluations.
Definition: DVecSVecOuterExpr.h:185
ReturnType value() const
Access to the current value of the sparse element.
Definition: DVecSVecOuterExpr.h:284
ResultType_< VT2 > RT2
Result type of the right-hand side sparse vector expression.
Definition: DVecSVecOuterExpr.h:111
Header file for the IsNumeric type trait.
RightOperand rightOperand() const noexcept
Returns the right-hand side sparse vector operand.
Definition: DVecSVecOuterExpr.h:514
ConstIterator find(size_t i, size_t j) const
Searches for a specific matrix element.
Definition: DVecSVecOuterExpr.h:467
#define BLAZE_CONSTRAINT_MUST_NOT_BE_SYMMETRIC_MATRIX_TYPE(T)
Constraint on the data type.In case the given data type T is a symmetric matrix type, a compilation error is created.
Definition: Symmetric.h:79
Header file for the SubmatrixExprTrait class template.
Header file for the HasSIMDMult type trait.
Header file for run time assertion macros.
ResultType_< VT1 > RT1
Result type of the left-hand side dense vector expression.
Definition: DVecSVecOuterExpr.h:110
typename If< T1, T2, T3 >::Type If_
Auxiliary alias declaration for the If class template.The If_ alias declaration provides a convenient...
Definition: If.h:160
ConstIterator upperBound(size_t i, size_t j) const
Returns an iterator to the first index greater then the given index.
Definition: DVecSVecOuterExpr.h:493
If_< IsExpression< VT1 >, const VT1, const VT1 &> LeftOperand
Composite type of the left-hand side dense vector expression.
Definition: DVecSVecOuterExpr.h:197
SIMD characteristics of data types.The SIMDTrait class template provides the SIMD characteristics of ...
Definition: SIMDTrait.h:296
#define BLAZE_FUNCTION_TRACE
Function trace macro.This macro can be used to reliably trace function calls. In case function tracin...
Definition: FunctionTrace.h:93
Header file for the isDefault shim.
Constraint on the data type.
DifferenceType operator-(const ConstIterator &rhs) const
Calculating the number of elements between two expression iterators.
Definition: DVecSVecOuterExpr.h:327
CompositeType_< VT1 > CT1
Composite type of the left-hand side dense vector expression.
Definition: DVecSVecOuterExpr.h:114
ReturnType_< VT1 > RN1
Return type of the left-hand side dense vector expression.
Definition: DVecSVecOuterExpr.h:112
#define BLAZE_CONSTRAINT_MUST_NOT_REQUIRE_EVALUATION(T)
Constraint on the data type.In case the given data type T requires an intermediate evaluation within ...
Definition: RequiresEvaluation.h:81
Constraint on the data type.
Header file for the RemoveReference type trait.
DifferenceType difference_type
Difference between two iterators.
Definition: DVecSVecOuterExpr.h:236
typename EnableIf< Condition, T >::Type EnableIf_
Auxiliary alias declaration for the EnableIf class template.The EnableIf_ alias declaration provides ...
Definition: EnableIf.h:223
MultExprTrait_< RN1, RN2 > ExprReturnType
Expression return type for the subscript operator.
Definition: DVecSVecOuterExpr.h:130
Base class for all outer product expression templates.The VecTVecMultExpr class serves as a tag for a...
Definition: VecTVecMultExpr.h:66
typename T::OppositeType OppositeType_
Alias declaration for nested OppositeType type definitions.The OppositeType_ alias declaration provid...
Definition: Aliases.h:243
ET1 LeftElement
Element type of the dense vector expression.
Definition: DVecSVecOuterExpr.h:220
typename T::ConstIterator ConstIterator_
Alias declaration for nested ConstIterator type definitions.The ConstIterator_ alias declaration prov...
Definition: Aliases.h:103
#define BLAZE_CONSTRAINT_MUST_BE_DENSE_VECTOR_TYPE(T)
Constraint on the data type.In case the given data type T is not a dense, N-dimensional vector type...
Definition: DenseVector.h:61
LeftOperand lhs_
Left-hand side dense vector of the multiplication expression.
Definition: DVecSVecOuterExpr.h:545
Index-value-pair for sparse vectors and matrices.The ValueIndexPair class represents a single index-v...
Definition: ValueIndexPair.h:73
ReturnType operator()(size_t i, size_t j) const
2D-access to the matrix elements.
Definition: DVecSVecOuterExpr.h:369
RightOperand rhs_
Right-hand side sparse vector of the multiplication expression.
Definition: DVecSVecOuterExpr.h:546
Header file for the IsComputation type trait class.
Base class for all compute expression templates.The Computation class serves as a tag for all computa...
Definition: Computation.h:59
ConstIterator(LeftElement v, IteratorType it)
Constructor for the ConstIterator class.
Definition: DVecSVecOuterExpr.h:242
Compile time evaluation of the size of a vector.The Size type trait evaluates the size of the given v...
Definition: Size.h:75
ConstIterator begin(size_t i) const
Returns an iterator to the first non-zero element of row i.
Definition: DVecSVecOuterExpr.h:402
Base class for sparse vectors.The SparseVector class is a base class for all arbitrarily sized (N-dim...
Definition: Forward.h:120
std::forward_iterator_tag IteratorCategory
The iterator category.
Definition: DVecSVecOuterExpr.h:225
Compile time evaluation of the number of columns of a matrix.The Columns type trait evaluates the num...
Definition: Columns.h:76
ConstIterator & operator++()
Pre-increment operator.
Definition: DVecSVecOuterExpr.h:253
LeftOperand leftOperand() const noexcept
Returns the left-hand side dense vector operand.
Definition: DVecSVecOuterExpr.h:504
#define BLAZE_CONSTRAINT_MUST_BE_ROW_VECTOR_TYPE(T)
Constraint on the data type.In case the given data type T is not a row dense or sparse vector type (i...
Definition: RowVector.h:61
Compile time evaluation of the number of rows of a matrix.The Rows type trait evaluates the number of...
Definition: Rows.h:76
Header file for the SubvectorExprTrait class template.
bool isDefault(const DiagonalProxy< MT > &proxy)
Returns whether the represented element is in default state.
Definition: DiagonalProxy.h:573
typename T::TransposeType TransposeType_
Alias declaration for nested TransposeType type definitions.The TransposeType_ alias declaration prov...
Definition: Aliases.h:403
void UNUSED_PARAMETER(const Args &...)
Suppression of unused parameter warnings.
Definition: Unused.h:81
ValueType value_type
Type of the underlying pointers.
Definition: DVecSVecOuterExpr.h:233
CompositeType_< VT2 > CT2
Composite type of the right-hand side sparse vector expression.
Definition: DVecSVecOuterExpr.h:115
size_t nonZeros(size_t i) const
Returns the number of non-zero elements in the specified row.
Definition: DVecSVecOuterExpr.h:454
size_t rows() const noexcept
Returns the current number of rows of the matrix.
Definition: DVecSVecOuterExpr.h:423
ptrdiff_t DifferenceType
Difference between two iterators.
Definition: DVecSVecOuterExpr.h:229
const DMatDMatMultExpr< T1, T2, false, false, false, false > operator*(const DenseMatrix< T1, false > &lhs, const DenseMatrix< T2, false > &rhs)
Multiplication operator for the multiplication of two row-major dense matrices ( ).
Definition: DMatDMatMultExpr.h:7505
Header file for the Size type trait.
Evaluation of the expression type type of a column operation.Via this type trait it is possible to ev...
Definition: ColumnExprTrait.h:78
#define BLAZE_INTERNAL_ASSERT(expr, msg)
Run time assertion macro for internal checks.In case of an invalid run time expression, the program execution is terminated. The BLAZE_INTERNAL_ASSERT macro can be disabled by setting the BLAZE_USER_ASSERTION flag to zero or by defining NDEBUG during the compilation.
Definition: Assert.h:101
PointerType pointer
Pointer return type.
Definition: DVecSVecOuterExpr.h:234
ElementType_< ResultType > ElementType
Resulting element type.
Definition: DVecSVecOuterExpr.h:188
ValueType * PointerType
Pointer return type.
Definition: DVecSVecOuterExpr.h:227
Constraint on the transpose flag of vector types.
Header file for the IsExpression type trait class.
Element ValueType
Type of the underlying pointers.
Definition: DVecSVecOuterExpr.h:226
Header file for the function trace functionality.
const ConstIterator * operator->() const
Direct access to the sparse matrix element at the current iterator position.
Definition: DVecSVecOuterExpr.h:274