aboutsummaryrefslogtreecommitdiff
path: root/math/blaze
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2018-08-19 18:00:36 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2018-08-19 18:00:36 +0000
commit1473bbf3b635d5d0a80c11be1e756143608e44a4 (patch)
tree089cbfa6052fe4e2a342a7e246bb798dff49bf8c /math/blaze
parentc5927f9fb95397bc52593edac51ab37a4549ffb3 (diff)
downloadports-1473bbf3b635d5d0a80c11be1e756143608e44a4.tar.gz
ports-1473bbf3b635d5d0a80c11be1e756143608e44a4.zip
New port: math/blaze: C++ math library for dense and sparse arithmetic
Notes
Notes: svn path=/head/; revision=477586
Diffstat (limited to 'math/blaze')
-rw-r--r--math/blaze/Makefile30
-rw-r--r--math/blaze/distinfo3
-rw-r--r--math/blaze/pkg-descr18
-rw-r--r--math/blaze/pkg-plist1379
4 files changed, 1430 insertions, 0 deletions
diff --git a/math/blaze/Makefile b/math/blaze/Makefile
new file mode 100644
index 000000000000..88cf0383a1f6
--- /dev/null
+++ b/math/blaze/Makefile
@@ -0,0 +1,30 @@
+# $FreeBSD$
+
+PORTNAME= blaze
+DISTVERSION= 3.3-430
+CATEGORIES= math
+MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/
+
+MAINTAINER= yuri@FreeBSD.org
+COMMENT= C++ math library for dense and sparse arithmetic
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= boost-libs>0:devel/boost-libs \
+ openblas>0:math/openblas \
+ openmp>0:devel/openmp
+RUN_DEPENDS= boost-libs>0:devel/boost-libs \
+ openblas>0:math/openblas \
+ openmp>0:devel/openmp
+
+USES= cmake:outsource compiler:c++14-lang fortran localbase:ldflags
+NO_ARCH= yes
+
+BB_ACCOUNT= ${PORTNAME}-lib
+BB_PROJECT= ${PORTNAME}
+BB_COMMIT= ea158fdf70ef
+
+WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT}
+
+.include <bsd.port.mk>
diff --git a/math/blaze/distinfo b/math/blaze/distinfo
new file mode 100644
index 000000000000..156a4651e55b
--- /dev/null
+++ b/math/blaze/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1534700527
+SHA256 (blaze-3.3-430.tar.gz) = 167ac0e44d2d43757e8cd1a3530fa41301e1f659be62f03b75d75fdaf1308b5c
+SIZE (blaze-3.3-430.tar.gz) = 7644513
diff --git a/math/blaze/pkg-descr b/math/blaze/pkg-descr
new file mode 100644
index 000000000000..960c1703793a
--- /dev/null
+++ b/math/blaze/pkg-descr
@@ -0,0 +1,18 @@
+Blaze is an open-source, high-performance C++ math library for dense and sparse
+arithmetic. With its state-of-the-art Smart Expression Template implementation
+Blaze combines the elegance and ease of use of a domain-specific language with
+HPC-grade performance, making it one of the most intuitive and fastest C++ math
+libraries available.
+
+The Blaze library offers:
+* high performance through the integration of BLAS libraries and manually tuned
+ HPC math kernels
+* vectorization by SSE, SSE2, SSE3, SSSE3, SSE4, AVX, AVX2, AVX-512, FMA,
+ and SVML
+* parallel execution by OpenMP, HPX, C++11 threads and Boost threads
+* the intuitive and easy to use API of a domain specific language
+* unified arithmetic with dense and sparse vectors and matrices
+* thoroughly tested matrix and vector arithmetic
+* completely portable, high quality C++ source code
+
+WWW: https://bitbucket.org/blaze-lib/blaze/src/master/
diff --git a/math/blaze/pkg-plist b/math/blaze/pkg-plist
new file mode 100644
index 000000000000..4bb611b75f36
--- /dev/null
+++ b/math/blaze/pkg-plist
@@ -0,0 +1,1379 @@
+include/blaze/Blaze.h
+include/blaze/Math.h
+include/blaze/Tutorial.h
+include/blaze/Util.h
+include/blaze/config/Assertion.h
+include/blaze/config/BLAS.h
+include/blaze/config/CacheSize.h
+include/blaze/config/Config.h
+include/blaze/config/Debugging.h
+include/blaze/config/Inline.h
+include/blaze/config/MPI.h
+include/blaze/config/Optimizations.h
+include/blaze/config/Random.h
+include/blaze/config/Restrict.h
+include/blaze/config/SMP.h
+include/blaze/config/StorageOrder.h
+include/blaze/config/Thresholds.h
+include/blaze/config/TransposeFlag.h
+include/blaze/config/Vectorization.h
+include/blaze/math/Accuracy.h
+include/blaze/math/Aliases.h
+include/blaze/math/AlignmentFlag.h
+include/blaze/math/BLAS.h
+include/blaze/math/Band.h
+include/blaze/math/Column.h
+include/blaze/math/Columns.h
+include/blaze/math/CompressedMatrix.h
+include/blaze/math/CompressedVector.h
+include/blaze/math/Constraints.h
+include/blaze/math/CustomMatrix.h
+include/blaze/math/CustomVector.h
+include/blaze/math/DenseMatrix.h
+include/blaze/math/DenseVector.h
+include/blaze/math/DiagonalMatrix.h
+include/blaze/math/DynamicMatrix.h
+include/blaze/math/DynamicVector.h
+include/blaze/math/Elements.h
+include/blaze/math/Epsilon.h
+include/blaze/math/Exception.h
+include/blaze/math/Forward.h
+include/blaze/math/Functors.h
+include/blaze/math/HermitianMatrix.h
+include/blaze/math/HybridMatrix.h
+include/blaze/math/HybridVector.h
+include/blaze/math/IdentityMatrix.h
+include/blaze/math/Infinity.h
+include/blaze/math/InitializerList.h
+include/blaze/math/InitializerMatrix.h
+include/blaze/math/InitializerVector.h
+include/blaze/math/IntegerSequence.h
+include/blaze/math/InversionFlag.h
+include/blaze/math/LAPACK.h
+include/blaze/math/LowerMatrix.h
+include/blaze/math/Math.h
+include/blaze/math/Matrix.h
+include/blaze/math/PaddingFlag.h
+include/blaze/math/ReductionFlag.h
+include/blaze/math/RelaxationFlag.h
+include/blaze/math/Row.h
+include/blaze/math/Rows.h
+include/blaze/math/SIMD.h
+include/blaze/math/SMP.h
+include/blaze/math/Serialization.h
+include/blaze/math/Shims.h
+include/blaze/math/SparseMatrix.h
+include/blaze/math/SparseVector.h
+include/blaze/math/StaticMatrix.h
+include/blaze/math/StaticVector.h
+include/blaze/math/StorageOrder.h
+include/blaze/math/StrictlyLowerMatrix.h
+include/blaze/math/StrictlyUpperMatrix.h
+include/blaze/math/Submatrix.h
+include/blaze/math/Subvector.h
+include/blaze/math/SymmetricMatrix.h
+include/blaze/math/Traits.h
+include/blaze/math/TransposeFlag.h
+include/blaze/math/TypeTraits.h
+include/blaze/math/UniLowerMatrix.h
+include/blaze/math/UniUpperMatrix.h
+include/blaze/math/UpperMatrix.h
+include/blaze/math/Vector.h
+include/blaze/math/Views.h
+include/blaze/math/adaptors/Adaptors.h
+include/blaze/math/adaptors/DiagonalMatrix.h
+include/blaze/math/adaptors/Forward.h
+include/blaze/math/adaptors/HermitianMatrix.h
+include/blaze/math/adaptors/LowerMatrix.h
+include/blaze/math/adaptors/StrictlyLowerMatrix.h
+include/blaze/math/adaptors/StrictlyUpperMatrix.h
+include/blaze/math/adaptors/SymmetricMatrix.h
+include/blaze/math/adaptors/UniLowerMatrix.h
+include/blaze/math/adaptors/UniUpperMatrix.h
+include/blaze/math/adaptors/UpperMatrix.h
+include/blaze/math/adaptors/diagonalmatrix/BaseTemplate.h
+include/blaze/math/adaptors/diagonalmatrix/Dense.h
+include/blaze/math/adaptors/diagonalmatrix/DiagonalProxy.h
+include/blaze/math/adaptors/diagonalmatrix/Sparse.h
+include/blaze/math/adaptors/hermitianmatrix/BaseTemplate.h
+include/blaze/math/adaptors/hermitianmatrix/Dense.h
+include/blaze/math/adaptors/hermitianmatrix/HermitianElement.h
+include/blaze/math/adaptors/hermitianmatrix/HermitianProxy.h
+include/blaze/math/adaptors/hermitianmatrix/HermitianValue.h
+include/blaze/math/adaptors/hermitianmatrix/Sparse.h
+include/blaze/math/adaptors/lowermatrix/BaseTemplate.h
+include/blaze/math/adaptors/lowermatrix/Dense.h
+include/blaze/math/adaptors/lowermatrix/LowerProxy.h
+include/blaze/math/adaptors/lowermatrix/Sparse.h
+include/blaze/math/adaptors/strictlylowermatrix/BaseTemplate.h
+include/blaze/math/adaptors/strictlylowermatrix/Dense.h
+include/blaze/math/adaptors/strictlylowermatrix/Sparse.h
+include/blaze/math/adaptors/strictlylowermatrix/StrictlyLowerProxy.h
+include/blaze/math/adaptors/strictlyuppermatrix/BaseTemplate.h
+include/blaze/math/adaptors/strictlyuppermatrix/Dense.h
+include/blaze/math/adaptors/strictlyuppermatrix/Sparse.h
+include/blaze/math/adaptors/strictlyuppermatrix/StrictlyUpperProxy.h
+include/blaze/math/adaptors/symmetricmatrix/BaseTemplate.h
+include/blaze/math/adaptors/symmetricmatrix/DenseNonNumeric.h
+include/blaze/math/adaptors/symmetricmatrix/DenseNumeric.h
+include/blaze/math/adaptors/symmetricmatrix/NonNumericProxy.h
+include/blaze/math/adaptors/symmetricmatrix/NumericProxy.h
+include/blaze/math/adaptors/symmetricmatrix/SharedValue.h
+include/blaze/math/adaptors/symmetricmatrix/SparseNonNumeric.h
+include/blaze/math/adaptors/symmetricmatrix/SparseNumeric.h
+include/blaze/math/adaptors/symmetricmatrix/SymmetricElement.h
+include/blaze/math/adaptors/symmetricmatrix/SymmetricValue.h
+include/blaze/math/adaptors/unilowermatrix/BaseTemplate.h
+include/blaze/math/adaptors/unilowermatrix/Dense.h
+include/blaze/math/adaptors/unilowermatrix/Sparse.h
+include/blaze/math/adaptors/unilowermatrix/UniLowerElement.h
+include/blaze/math/adaptors/unilowermatrix/UniLowerProxy.h
+include/blaze/math/adaptors/unilowermatrix/UniLowerValue.h
+include/blaze/math/adaptors/uniuppermatrix/BaseTemplate.h
+include/blaze/math/adaptors/uniuppermatrix/Dense.h
+include/blaze/math/adaptors/uniuppermatrix/Sparse.h
+include/blaze/math/adaptors/uniuppermatrix/UniUpperElement.h
+include/blaze/math/adaptors/uniuppermatrix/UniUpperProxy.h
+include/blaze/math/adaptors/uniuppermatrix/UniUpperValue.h
+include/blaze/math/adaptors/uppermatrix/BaseTemplate.h
+include/blaze/math/adaptors/uppermatrix/Dense.h
+include/blaze/math/adaptors/uppermatrix/Sparse.h
+include/blaze/math/adaptors/uppermatrix/UpperProxy.h
+include/blaze/math/blas/BLAS.h
+include/blaze/math/blas/axpy.h
+include/blaze/math/blas/dotc.h
+include/blaze/math/blas/dotu.h
+include/blaze/math/blas/gemm.h
+include/blaze/math/blas/gemv.h
+include/blaze/math/blas/trmm.h
+include/blaze/math/blas/trmv.h
+include/blaze/math/blas/trsm.h
+include/blaze/math/constraints/Adaptor.h
+include/blaze/math/constraints/AddExpr.h
+include/blaze/math/constraints/Aligned.h
+include/blaze/math/constraints/BLASCompatible.h
+include/blaze/math/constraints/Band.h
+include/blaze/math/constraints/BinaryMapExpr.h
+include/blaze/math/constraints/Column.h
+include/blaze/math/constraints/ColumnMajorMatrix.h
+include/blaze/math/constraints/ColumnVector.h
+include/blaze/math/constraints/Columns.h
+include/blaze/math/constraints/Computation.h
+include/blaze/math/constraints/ConstDataAccess.h
+include/blaze/math/constraints/Constraints.h
+include/blaze/math/constraints/Contiguous.h
+include/blaze/math/constraints/CrossExpr.h
+include/blaze/math/constraints/Custom.h
+include/blaze/math/constraints/DeclDiagExpr.h
+include/blaze/math/constraints/DeclExpr.h
+include/blaze/math/constraints/DeclHermExpr.h
+include/blaze/math/constraints/DeclLowExpr.h
+include/blaze/math/constraints/DeclSymExpr.h
+include/blaze/math/constraints/DeclUppExpr.h
+include/blaze/math/constraints/Declaration.h
+include/blaze/math/constraints/DenseMatrix.h
+include/blaze/math/constraints/DenseVector.h
+include/blaze/math/constraints/Diagonal.h
+include/blaze/math/constraints/DivExpr.h
+include/blaze/math/constraints/Elements.h
+include/blaze/math/constraints/EvalExpr.h
+include/blaze/math/constraints/Expression.h
+include/blaze/math/constraints/General.h
+include/blaze/math/constraints/Hermitian.h
+include/blaze/math/constraints/Identity.h
+include/blaze/math/constraints/Initializer.h
+include/blaze/math/constraints/Invertible.h
+include/blaze/math/constraints/Lower.h
+include/blaze/math/constraints/MatEvalExpr.h
+include/blaze/math/constraints/MatInvExpr.h
+include/blaze/math/constraints/MatMapExpr.h
+include/blaze/math/constraints/MatMatAddExpr.h
+include/blaze/math/constraints/MatMatMapExpr.h
+include/blaze/math/constraints/MatMatMultExpr.h
+include/blaze/math/constraints/MatMatSubExpr.h
+include/blaze/math/constraints/MatReduceExpr.h
+include/blaze/math/constraints/MatScalarDivExpr.h
+include/blaze/math/constraints/MatScalarMultExpr.h
+include/blaze/math/constraints/MatSerialExpr.h
+include/blaze/math/constraints/MatTransExpr.h
+include/blaze/math/constraints/MatVecMultExpr.h
+include/blaze/math/constraints/Matrix.h
+include/blaze/math/constraints/MultExpr.h
+include/blaze/math/constraints/MutableDataAccess.h
+include/blaze/math/constraints/NumericMatrix.h
+include/blaze/math/constraints/NumericVector.h
+include/blaze/math/constraints/Operation.h
+include/blaze/math/constraints/OpposedView.h
+include/blaze/math/constraints/Padded.h
+include/blaze/math/constraints/Proxy.h
+include/blaze/math/constraints/ReduceExpr.h
+include/blaze/math/constraints/RequiresEvaluation.h
+include/blaze/math/constraints/Resizable.h
+include/blaze/math/constraints/Restricted.h
+include/blaze/math/constraints/Row.h
+include/blaze/math/constraints/RowMajorMatrix.h
+include/blaze/math/constraints/RowVector.h
+include/blaze/math/constraints/Rows.h
+include/blaze/math/constraints/SIMDCombinable.h
+include/blaze/math/constraints/SIMDEnabled.h
+include/blaze/math/constraints/SIMDPack.h
+include/blaze/math/constraints/SMPAssignable.h
+include/blaze/math/constraints/SchurExpr.h
+include/blaze/math/constraints/SerialExpr.h
+include/blaze/math/constraints/Shrinkable.h
+include/blaze/math/constraints/SparseElement.h
+include/blaze/math/constraints/SparseMatrix.h
+include/blaze/math/constraints/SparseVector.h
+include/blaze/math/constraints/Square.h
+include/blaze/math/constraints/Static.h
+include/blaze/math/constraints/StorageOrder.h
+include/blaze/math/constraints/StrictlyLower.h
+include/blaze/math/constraints/StrictlyTriangular.h
+include/blaze/math/constraints/StrictlyUpper.h
+include/blaze/math/constraints/SubExpr.h
+include/blaze/math/constraints/Submatrix.h
+include/blaze/math/constraints/Subvector.h
+include/blaze/math/constraints/Symmetric.h
+include/blaze/math/constraints/TVecMatMultExpr.h
+include/blaze/math/constraints/TransExpr.h
+include/blaze/math/constraints/Transformation.h
+include/blaze/math/constraints/TransposeFlag.h
+include/blaze/math/constraints/Triangular.h
+include/blaze/math/constraints/UnaryMapExpr.h
+include/blaze/math/constraints/UniLower.h
+include/blaze/math/constraints/UniTriangular.h
+include/blaze/math/constraints/UniUpper.h
+include/blaze/math/constraints/Uniform.h
+include/blaze/math/constraints/Upper.h
+include/blaze/math/constraints/VecEvalExpr.h
+include/blaze/math/constraints/VecMapExpr.h
+include/blaze/math/constraints/VecScalarDivExpr.h
+include/blaze/math/constraints/VecScalarMultExpr.h
+include/blaze/math/constraints/VecSerialExpr.h
+include/blaze/math/constraints/VecTVecMultExpr.h
+include/blaze/math/constraints/VecTransExpr.h
+include/blaze/math/constraints/VecVecAddExpr.h
+include/blaze/math/constraints/VecVecDivExpr.h
+include/blaze/math/constraints/VecVecMapExpr.h
+include/blaze/math/constraints/VecVecMultExpr.h
+include/blaze/math/constraints/VecVecSubExpr.h
+include/blaze/math/constraints/Vector.h
+include/blaze/math/constraints/View.h
+include/blaze/math/dense/CustomMatrix.h
+include/blaze/math/dense/CustomVector.h
+include/blaze/math/dense/DenseIterator.h
+include/blaze/math/dense/DenseMatrix.h
+include/blaze/math/dense/DenseVector.h
+include/blaze/math/dense/DynamicMatrix.h
+include/blaze/math/dense/DynamicVector.h
+include/blaze/math/dense/Eigen.h
+include/blaze/math/dense/Forward.h
+include/blaze/math/dense/HybridMatrix.h
+include/blaze/math/dense/HybridVector.h
+include/blaze/math/dense/InitializerIterator.h
+include/blaze/math/dense/InitializerMatrix.h
+include/blaze/math/dense/InitializerVector.h
+include/blaze/math/dense/Inversion.h
+include/blaze/math/dense/LLH.h
+include/blaze/math/dense/LQ.h
+include/blaze/math/dense/LU.h
+include/blaze/math/dense/MMM.h
+include/blaze/math/dense/QL.h
+include/blaze/math/dense/QR.h
+include/blaze/math/dense/RQ.h
+include/blaze/math/dense/SVD.h
+include/blaze/math/dense/StaticMatrix.h
+include/blaze/math/dense/StaticVector.h
+include/blaze/math/expressions/AddExpr.h
+include/blaze/math/expressions/BinaryMapExpr.h
+include/blaze/math/expressions/Computation.h
+include/blaze/math/expressions/CrossExpr.h
+include/blaze/math/expressions/DMatDMatAddExpr.h
+include/blaze/math/expressions/DMatDMatEqualExpr.h
+include/blaze/math/expressions/DMatDMatMapExpr.h
+include/blaze/math/expressions/DMatDMatMultExpr.h
+include/blaze/math/expressions/DMatDMatSchurExpr.h
+include/blaze/math/expressions/DMatDMatSubExpr.h
+include/blaze/math/expressions/DMatDVecMultExpr.h
+include/blaze/math/expressions/DMatDeclDiagExpr.h
+include/blaze/math/expressions/DMatDeclHermExpr.h
+include/blaze/math/expressions/DMatDeclLowExpr.h
+include/blaze/math/expressions/DMatDeclSymExpr.h
+include/blaze/math/expressions/DMatDeclUppExpr.h
+include/blaze/math/expressions/DMatDetExpr.h
+include/blaze/math/expressions/DMatEvalExpr.h
+include/blaze/math/expressions/DMatInvExpr.h
+include/blaze/math/expressions/DMatMapExpr.h
+include/blaze/math/expressions/DMatNormExpr.h
+include/blaze/math/expressions/DMatReduceExpr.h
+include/blaze/math/expressions/DMatSMatAddExpr.h
+include/blaze/math/expressions/DMatSMatEqualExpr.h
+include/blaze/math/expressions/DMatSMatMultExpr.h
+include/blaze/math/expressions/DMatSMatSchurExpr.h
+include/blaze/math/expressions/DMatSMatSubExpr.h
+include/blaze/math/expressions/DMatSVecMultExpr.h
+include/blaze/math/expressions/DMatScalarDivExpr.h
+include/blaze/math/expressions/DMatScalarMultExpr.h
+include/blaze/math/expressions/DMatSerialExpr.h
+include/blaze/math/expressions/DMatTDMatAddExpr.h
+include/blaze/math/expressions/DMatTDMatMapExpr.h
+include/blaze/math/expressions/DMatTDMatMultExpr.h
+include/blaze/math/expressions/DMatTDMatSchurExpr.h
+include/blaze/math/expressions/DMatTDMatSubExpr.h
+include/blaze/math/expressions/DMatTSMatAddExpr.h
+include/blaze/math/expressions/DMatTSMatMultExpr.h
+include/blaze/math/expressions/DMatTSMatSchurExpr.h
+include/blaze/math/expressions/DMatTSMatSubExpr.h
+include/blaze/math/expressions/DMatTransExpr.h
+include/blaze/math/expressions/DMatTransposer.h
+include/blaze/math/expressions/DVecDVecAddExpr.h
+include/blaze/math/expressions/DVecDVecCrossExpr.h
+include/blaze/math/expressions/DVecDVecDivExpr.h
+include/blaze/math/expressions/DVecDVecEqualExpr.h
+include/blaze/math/expressions/DVecDVecInnerExpr.h
+include/blaze/math/expressions/DVecDVecMapExpr.h
+include/blaze/math/expressions/DVecDVecMultExpr.h
+include/blaze/math/expressions/DVecDVecOuterExpr.h
+include/blaze/math/expressions/DVecDVecSubExpr.h
+include/blaze/math/expressions/DVecEvalExpr.h
+include/blaze/math/expressions/DVecMapExpr.h
+include/blaze/math/expressions/DVecNormExpr.h
+include/blaze/math/expressions/DVecReduceExpr.h
+include/blaze/math/expressions/DVecSVecAddExpr.h
+include/blaze/math/expressions/DVecSVecCrossExpr.h
+include/blaze/math/expressions/DVecSVecEqualExpr.h
+include/blaze/math/expressions/DVecSVecInnerExpr.h
+include/blaze/math/expressions/DVecSVecMultExpr.h
+include/blaze/math/expressions/DVecSVecOuterExpr.h
+include/blaze/math/expressions/DVecSVecSubExpr.h
+include/blaze/math/expressions/DVecScalarDivExpr.h
+include/blaze/math/expressions/DVecScalarMultExpr.h
+include/blaze/math/expressions/DVecSerialExpr.h
+include/blaze/math/expressions/DVecTransExpr.h
+include/blaze/math/expressions/DVecTransposer.h
+include/blaze/math/expressions/DeclDiagExpr.h
+include/blaze/math/expressions/DeclExpr.h
+include/blaze/math/expressions/DeclHermExpr.h
+include/blaze/math/expressions/DeclLowExpr.h
+include/blaze/math/expressions/DeclSymExpr.h
+include/blaze/math/expressions/DeclUppExpr.h
+include/blaze/math/expressions/Declaration.h
+include/blaze/math/expressions/DenseMatrix.h
+include/blaze/math/expressions/DenseVector.h
+include/blaze/math/expressions/DivExpr.h
+include/blaze/math/expressions/EvalExpr.h
+include/blaze/math/expressions/Expression.h
+include/blaze/math/expressions/Forward.h
+include/blaze/math/expressions/MatEvalExpr.h
+include/blaze/math/expressions/MatInvExpr.h
+include/blaze/math/expressions/MatMapExpr.h
+include/blaze/math/expressions/MatMatAddExpr.h
+include/blaze/math/expressions/MatMatMapExpr.h
+include/blaze/math/expressions/MatMatMultExpr.h
+include/blaze/math/expressions/MatMatSubExpr.h
+include/blaze/math/expressions/MatReduceExpr.h
+include/blaze/math/expressions/MatScalarDivExpr.h
+include/blaze/math/expressions/MatScalarMultExpr.h
+include/blaze/math/expressions/MatSerialExpr.h
+include/blaze/math/expressions/MatTransExpr.h
+include/blaze/math/expressions/MatVecMultExpr.h
+include/blaze/math/expressions/Matrix.h
+include/blaze/math/expressions/MultExpr.h
+include/blaze/math/expressions/Operation.h
+include/blaze/math/expressions/ReduceExpr.h
+include/blaze/math/expressions/SMatDMatMultExpr.h
+include/blaze/math/expressions/SMatDMatSchurExpr.h
+include/blaze/math/expressions/SMatDMatSubExpr.h
+include/blaze/math/expressions/SMatDVecMultExpr.h
+include/blaze/math/expressions/SMatDeclDiagExpr.h
+include/blaze/math/expressions/SMatDeclHermExpr.h
+include/blaze/math/expressions/SMatDeclLowExpr.h
+include/blaze/math/expressions/SMatDeclSymExpr.h
+include/blaze/math/expressions/SMatDeclUppExpr.h
+include/blaze/math/expressions/SMatEvalExpr.h
+include/blaze/math/expressions/SMatMapExpr.h
+include/blaze/math/expressions/SMatNormExpr.h
+include/blaze/math/expressions/SMatReduceExpr.h
+include/blaze/math/expressions/SMatSMatAddExpr.h
+include/blaze/math/expressions/SMatSMatEqualExpr.h
+include/blaze/math/expressions/SMatSMatMultExpr.h
+include/blaze/math/expressions/SMatSMatSchurExpr.h
+include/blaze/math/expressions/SMatSMatSubExpr.h
+include/blaze/math/expressions/SMatSVecMultExpr.h
+include/blaze/math/expressions/SMatScalarDivExpr.h
+include/blaze/math/expressions/SMatScalarMultExpr.h
+include/blaze/math/expressions/SMatSerialExpr.h
+include/blaze/math/expressions/SMatTDMatMultExpr.h
+include/blaze/math/expressions/SMatTDMatSubExpr.h
+include/blaze/math/expressions/SMatTSMatAddExpr.h
+include/blaze/math/expressions/SMatTSMatMultExpr.h
+include/blaze/math/expressions/SMatTSMatSchurExpr.h
+include/blaze/math/expressions/SMatTSMatSubExpr.h
+include/blaze/math/expressions/SMatTransExpr.h
+include/blaze/math/expressions/SMatTransposer.h
+include/blaze/math/expressions/SVecDVecCrossExpr.h
+include/blaze/math/expressions/SVecDVecDivExpr.h
+include/blaze/math/expressions/SVecDVecInnerExpr.h
+include/blaze/math/expressions/SVecDVecMultExpr.h
+include/blaze/math/expressions/SVecDVecOuterExpr.h
+include/blaze/math/expressions/SVecDVecSubExpr.h
+include/blaze/math/expressions/SVecEvalExpr.h
+include/blaze/math/expressions/SVecMapExpr.h
+include/blaze/math/expressions/SVecNormExpr.h
+include/blaze/math/expressions/SVecReduceExpr.h
+include/blaze/math/expressions/SVecSVecAddExpr.h
+include/blaze/math/expressions/SVecSVecCrossExpr.h
+include/blaze/math/expressions/SVecSVecEqualExpr.h
+include/blaze/math/expressions/SVecSVecInnerExpr.h
+include/blaze/math/expressions/SVecSVecMultExpr.h
+include/blaze/math/expressions/SVecSVecOuterExpr.h
+include/blaze/math/expressions/SVecSVecSubExpr.h
+include/blaze/math/expressions/SVecScalarDivExpr.h
+include/blaze/math/expressions/SVecScalarMultExpr.h
+include/blaze/math/expressions/SVecSerialExpr.h
+include/blaze/math/expressions/SVecTransExpr.h
+include/blaze/math/expressions/SVecTransposer.h
+include/blaze/math/expressions/SchurExpr.h
+include/blaze/math/expressions/SerialExpr.h
+include/blaze/math/expressions/SparseMatrix.h
+include/blaze/math/expressions/SparseVector.h
+include/blaze/math/expressions/SubExpr.h
+include/blaze/math/expressions/TDMatDMatMultExpr.h
+include/blaze/math/expressions/TDMatDVecMultExpr.h
+include/blaze/math/expressions/TDMatSMatAddExpr.h
+include/blaze/math/expressions/TDMatSMatMultExpr.h
+include/blaze/math/expressions/TDMatSMatSubExpr.h
+include/blaze/math/expressions/TDMatSVecMultExpr.h
+include/blaze/math/expressions/TDMatTDMatMultExpr.h
+include/blaze/math/expressions/TDMatTSMatMultExpr.h
+include/blaze/math/expressions/TDVecDMatMultExpr.h
+include/blaze/math/expressions/TDVecSMatMultExpr.h
+include/blaze/math/expressions/TDVecTDMatMultExpr.h
+include/blaze/math/expressions/TDVecTSMatMultExpr.h
+include/blaze/math/expressions/TSMatDMatMultExpr.h
+include/blaze/math/expressions/TSMatDMatSchurExpr.h
+include/blaze/math/expressions/TSMatDMatSubExpr.h
+include/blaze/math/expressions/TSMatDVecMultExpr.h
+include/blaze/math/expressions/TSMatSMatMultExpr.h
+include/blaze/math/expressions/TSMatSMatSchurExpr.h
+include/blaze/math/expressions/TSMatSMatSubExpr.h
+include/blaze/math/expressions/TSMatSVecMultExpr.h
+include/blaze/math/expressions/TSMatTDMatMultExpr.h
+include/blaze/math/expressions/TSMatTSMatAddExpr.h
+include/blaze/math/expressions/TSMatTSMatMultExpr.h
+include/blaze/math/expressions/TSMatTSMatSchurExpr.h
+include/blaze/math/expressions/TSMatTSMatSubExpr.h
+include/blaze/math/expressions/TSVecDMatMultExpr.h
+include/blaze/math/expressions/TSVecSMatMultExpr.h
+include/blaze/math/expressions/TSVecTDMatMultExpr.h
+include/blaze/math/expressions/TSVecTSMatMultExpr.h
+include/blaze/math/expressions/TVecMatMultExpr.h
+include/blaze/math/expressions/TransExpr.h
+include/blaze/math/expressions/Transformation.h
+include/blaze/math/expressions/UnaryMapExpr.h
+include/blaze/math/expressions/VecEvalExpr.h
+include/blaze/math/expressions/VecMapExpr.h
+include/blaze/math/expressions/VecScalarDivExpr.h
+include/blaze/math/expressions/VecScalarMultExpr.h
+include/blaze/math/expressions/VecSerialExpr.h
+include/blaze/math/expressions/VecTVecMultExpr.h
+include/blaze/math/expressions/VecTransExpr.h
+include/blaze/math/expressions/VecVecAddExpr.h
+include/blaze/math/expressions/VecVecDivExpr.h
+include/blaze/math/expressions/VecVecMapExpr.h
+include/blaze/math/expressions/VecVecMultExpr.h
+include/blaze/math/expressions/VecVecSubExpr.h
+include/blaze/math/expressions/Vector.h
+include/blaze/math/expressions/View.h
+include/blaze/math/functors/Abs.h
+include/blaze/math/functors/Acos.h
+include/blaze/math/functors/Acosh.h
+include/blaze/math/functors/Add.h
+include/blaze/math/functors/AddAssign.h
+include/blaze/math/functors/Asin.h
+include/blaze/math/functors/Asinh.h
+include/blaze/math/functors/Assign.h
+include/blaze/math/functors/Atan.h
+include/blaze/math/functors/Atan2.h
+include/blaze/math/functors/Atanh.h
+include/blaze/math/functors/CTrans.h
+include/blaze/math/functors/Cbrt.h
+include/blaze/math/functors/Ceil.h
+include/blaze/math/functors/Clamp.h
+include/blaze/math/functors/Clear.h
+include/blaze/math/functors/Conj.h
+include/blaze/math/functors/Cos.h
+include/blaze/math/functors/Cosh.h
+include/blaze/math/functors/DeclDiag.h
+include/blaze/math/functors/DeclHerm.h
+include/blaze/math/functors/DeclId.h
+include/blaze/math/functors/DeclLow.h
+include/blaze/math/functors/DeclSym.h
+include/blaze/math/functors/DeclUpp.h
+include/blaze/math/functors/Div.h
+include/blaze/math/functors/DivAssign.h
+include/blaze/math/functors/Erf.h
+include/blaze/math/functors/Erfc.h
+include/blaze/math/functors/Eval.h
+include/blaze/math/functors/Exp.h
+include/blaze/math/functors/Exp10.h
+include/blaze/math/functors/Exp2.h
+include/blaze/math/functors/Floor.h
+include/blaze/math/functors/Forward.h
+include/blaze/math/functors/Functors.h
+include/blaze/math/functors/Hypot.h
+include/blaze/math/functors/Imag.h
+include/blaze/math/functors/Inv.h
+include/blaze/math/functors/InvCbrt.h
+include/blaze/math/functors/InvSqrt.h
+include/blaze/math/functors/L1Norm.h
+include/blaze/math/functors/L2Norm.h
+include/blaze/math/functors/L3Norm.h
+include/blaze/math/functors/L4Norm.h
+include/blaze/math/functors/Log.h
+include/blaze/math/functors/Log10.h
+include/blaze/math/functors/Log2.h
+include/blaze/math/functors/LpNorm.h
+include/blaze/math/functors/Max.h
+include/blaze/math/functors/Min.h
+include/blaze/math/functors/Mult.h
+include/blaze/math/functors/MultAssign.h
+include/blaze/math/functors/Noop.h
+include/blaze/math/functors/Pow.h
+include/blaze/math/functors/Pow2.h
+include/blaze/math/functors/Pow3.h
+include/blaze/math/functors/Pow4.h
+include/blaze/math/functors/Qdrt.h
+include/blaze/math/functors/Real.h
+include/blaze/math/functors/Reset.h
+include/blaze/math/functors/Round.h
+include/blaze/math/functors/Schur.h
+include/blaze/math/functors/SchurAssign.h
+include/blaze/math/functors/Serial.h
+include/blaze/math/functors/Sign.h
+include/blaze/math/functors/Sin.h
+include/blaze/math/functors/Sinh.h
+include/blaze/math/functors/Sqrt.h
+include/blaze/math/functors/Sub.h
+include/blaze/math/functors/SubAssign.h
+include/blaze/math/functors/Tan.h
+include/blaze/math/functors/Tanh.h
+include/blaze/math/functors/Trans.h
+include/blaze/math/functors/Trunc.h
+include/blaze/math/functors/UnaryPow.h
+include/blaze/math/lapack/LAPACK.h
+include/blaze/math/lapack/clapack/geev.h
+include/blaze/math/lapack/clapack/gelqf.h
+include/blaze/math/lapack/clapack/geqlf.h
+include/blaze/math/lapack/clapack/geqp3.h
+include/blaze/math/lapack/clapack/geqrf.h
+include/blaze/math/lapack/clapack/gerqf.h
+include/blaze/math/lapack/clapack/gesdd.h
+include/blaze/math/lapack/clapack/gesv.h
+include/blaze/math/lapack/clapack/gesvd.h
+include/blaze/math/lapack/clapack/gesvdx.h
+include/blaze/math/lapack/clapack/getrf.h
+include/blaze/math/lapack/clapack/getri.h
+include/blaze/math/lapack/clapack/getrs.h
+include/blaze/math/lapack/clapack/heev.h
+include/blaze/math/lapack/clapack/heevd.h
+include/blaze/math/lapack/clapack/heevx.h
+include/blaze/math/lapack/clapack/hesv.h
+include/blaze/math/lapack/clapack/hetrf.h
+include/blaze/math/lapack/clapack/hetri.h
+include/blaze/math/lapack/clapack/hetrs.h
+include/blaze/math/lapack/clapack/orglq.h
+include/blaze/math/lapack/clapack/orgql.h
+include/blaze/math/lapack/clapack/orgqr.h
+include/blaze/math/lapack/clapack/orgrq.h
+include/blaze/math/lapack/clapack/ormlq.h
+include/blaze/math/lapack/clapack/ormql.h
+include/blaze/math/lapack/clapack/ormqr.h
+include/blaze/math/lapack/clapack/ormrq.h
+include/blaze/math/lapack/clapack/posv.h
+include/blaze/math/lapack/clapack/potrf.h
+include/blaze/math/lapack/clapack/potri.h
+include/blaze/math/lapack/clapack/potrs.h
+include/blaze/math/lapack/clapack/syev.h
+include/blaze/math/lapack/clapack/syevd.h
+include/blaze/math/lapack/clapack/syevx.h
+include/blaze/math/lapack/clapack/sysv.h
+include/blaze/math/lapack/clapack/sytrf.h
+include/blaze/math/lapack/clapack/sytri.h
+include/blaze/math/lapack/clapack/sytrs.h
+include/blaze/math/lapack/clapack/trsv.h
+include/blaze/math/lapack/clapack/trtri.h
+include/blaze/math/lapack/clapack/trtrs.h
+include/blaze/math/lapack/clapack/unglq.h
+include/blaze/math/lapack/clapack/ungql.h
+include/blaze/math/lapack/clapack/ungqr.h
+include/blaze/math/lapack/clapack/ungrq.h
+include/blaze/math/lapack/clapack/unmlq.h
+include/blaze/math/lapack/clapack/unmql.h
+include/blaze/math/lapack/clapack/unmqr.h
+include/blaze/math/lapack/clapack/unmrq.h
+include/blaze/math/lapack/geev.h
+include/blaze/math/lapack/gelqf.h
+include/blaze/math/lapack/geqlf.h
+include/blaze/math/lapack/geqp3.h
+include/blaze/math/lapack/geqrf.h
+include/blaze/math/lapack/gerqf.h
+include/blaze/math/lapack/gesdd.h
+include/blaze/math/lapack/gesv.h
+include/blaze/math/lapack/gesvd.h
+include/blaze/math/lapack/gesvdx.h
+include/blaze/math/lapack/getrf.h
+include/blaze/math/lapack/getri.h
+include/blaze/math/lapack/getrs.h
+include/blaze/math/lapack/heev.h
+include/blaze/math/lapack/heevd.h
+include/blaze/math/lapack/heevx.h
+include/blaze/math/lapack/hesv.h
+include/blaze/math/lapack/hetrf.h
+include/blaze/math/lapack/hetri.h
+include/blaze/math/lapack/hetrs.h
+include/blaze/math/lapack/orglq.h
+include/blaze/math/lapack/orgql.h
+include/blaze/math/lapack/orgqr.h
+include/blaze/math/lapack/orgrq.h
+include/blaze/math/lapack/ormlq.h
+include/blaze/math/lapack/ormql.h
+include/blaze/math/lapack/ormqr.h
+include/blaze/math/lapack/ormrq.h
+include/blaze/math/lapack/posv.h
+include/blaze/math/lapack/potrf.h
+include/blaze/math/lapack/potri.h
+include/blaze/math/lapack/potrs.h
+include/blaze/math/lapack/syev.h
+include/blaze/math/lapack/syevd.h
+include/blaze/math/lapack/syevx.h
+include/blaze/math/lapack/sysv.h
+include/blaze/math/lapack/sytrf.h
+include/blaze/math/lapack/sytri.h
+include/blaze/math/lapack/sytrs.h
+include/blaze/math/lapack/trsv.h
+include/blaze/math/lapack/trtri.h
+include/blaze/math/lapack/trtrs.h
+include/blaze/math/lapack/unglq.h
+include/blaze/math/lapack/ungql.h
+include/blaze/math/lapack/ungqr.h
+include/blaze/math/lapack/ungrq.h
+include/blaze/math/lapack/unmlq.h
+include/blaze/math/lapack/unmql.h
+include/blaze/math/lapack/unmqr.h
+include/blaze/math/lapack/unmrq.h
+include/blaze/math/proxy/ComplexProxy.h
+include/blaze/math/proxy/DefaultProxy.h
+include/blaze/math/proxy/DenseMatrixProxy.h
+include/blaze/math/proxy/DenseVectorProxy.h
+include/blaze/math/proxy/Forward.h
+include/blaze/math/proxy/Proxy.h
+include/blaze/math/proxy/SparseMatrixProxy.h
+include/blaze/math/proxy/SparseVectorProxy.h
+include/blaze/math/serialization/MatrixSerializer.h
+include/blaze/math/serialization/Serialization.h
+include/blaze/math/serialization/TypeValueMapping.h
+include/blaze/math/serialization/VectorSerializer.h
+include/blaze/math/shims/Abs.h
+include/blaze/math/shims/Acos.h
+include/blaze/math/shims/Acosh.h
+include/blaze/math/shims/Asin.h
+include/blaze/math/shims/Asinh.h
+include/blaze/math/shims/Atan.h
+include/blaze/math/shims/Atan2.h
+include/blaze/math/shims/Atanh.h
+include/blaze/math/shims/Cbrt.h
+include/blaze/math/shims/Ceil.h
+include/blaze/math/shims/Clamp.h
+include/blaze/math/shims/Clear.h
+include/blaze/math/shims/Conjugate.h
+include/blaze/math/shims/Cos.h
+include/blaze/math/shims/Cosh.h
+include/blaze/math/shims/Digits.h
+include/blaze/math/shims/Equal.h
+include/blaze/math/shims/Erf.h
+include/blaze/math/shims/Erfc.h
+include/blaze/math/shims/Eval.h
+include/blaze/math/shims/Evaluate.h
+include/blaze/math/shims/Exp.h
+include/blaze/math/shims/Exp10.h
+include/blaze/math/shims/Exp2.h
+include/blaze/math/shims/Floor.h
+include/blaze/math/shims/Greater.h
+include/blaze/math/shims/Hypot.h
+include/blaze/math/shims/Imaginary.h
+include/blaze/math/shims/InvCbrt.h
+include/blaze/math/shims/InvSqrt.h
+include/blaze/math/shims/Invert.h
+include/blaze/math/shims/IsDefault.h
+include/blaze/math/shims/IsDivisor.h
+include/blaze/math/shims/IsNaN.h
+include/blaze/math/shims/IsOne.h
+include/blaze/math/shims/IsReal.h
+include/blaze/math/shims/IsZero.h
+include/blaze/math/shims/Less.h
+include/blaze/math/shims/Log.h
+include/blaze/math/shims/Log10.h
+include/blaze/math/shims/Log2.h
+include/blaze/math/shims/NextMultiple.h
+include/blaze/math/shims/Pow.h
+include/blaze/math/shims/Pow2.h
+include/blaze/math/shims/Pow3.h
+include/blaze/math/shims/Pow4.h
+include/blaze/math/shims/Qdrt.h
+include/blaze/math/shims/Real.h
+include/blaze/math/shims/Reset.h
+include/blaze/math/shims/Round.h
+include/blaze/math/shims/Serial.h
+include/blaze/math/shims/Shims.h
+include/blaze/math/shims/Sign.h
+include/blaze/math/shims/Sin.h
+include/blaze/math/shims/Sinh.h
+include/blaze/math/shims/Sqrt.h
+include/blaze/math/shims/Tan.h
+include/blaze/math/shims/Tanh.h
+include/blaze/math/shims/Trunc.h
+include/blaze/math/simd/Abs.h
+include/blaze/math/simd/Acos.h
+include/blaze/math/simd/Acosh.h
+include/blaze/math/simd/Add.h
+include/blaze/math/simd/Asin.h
+include/blaze/math/simd/Asinh.h
+include/blaze/math/simd/Atan.h
+include/blaze/math/simd/Atan2.h
+include/blaze/math/simd/Atanh.h
+include/blaze/math/simd/BasicTypes.h
+include/blaze/math/simd/Cbrt.h
+include/blaze/math/simd/Ceil.h
+include/blaze/math/simd/Conj.h
+include/blaze/math/simd/Cos.h
+include/blaze/math/simd/Cosh.h
+include/blaze/math/simd/DerivedTypes.h
+include/blaze/math/simd/Div.h
+include/blaze/math/simd/Equal.h
+include/blaze/math/simd/Erf.h
+include/blaze/math/simd/Erfc.h
+include/blaze/math/simd/Exp.h
+include/blaze/math/simd/Exp10.h
+include/blaze/math/simd/Exp2.h
+include/blaze/math/simd/FMA.h
+include/blaze/math/simd/Floor.h
+include/blaze/math/simd/Functions.h
+include/blaze/math/simd/Hypot.h
+include/blaze/math/simd/InvCbrt.h
+include/blaze/math/simd/InvSqrt.h
+include/blaze/math/simd/Loada.h
+include/blaze/math/simd/Loadu.h
+include/blaze/math/simd/Log.h
+include/blaze/math/simd/Log10.h
+include/blaze/math/simd/Log2.h
+include/blaze/math/simd/Max.h
+include/blaze/math/simd/Min.h
+include/blaze/math/simd/Mult.h
+include/blaze/math/simd/Pow.h
+include/blaze/math/simd/Prod.h
+include/blaze/math/simd/Reduce.h
+include/blaze/math/simd/Round.h
+include/blaze/math/simd/SIMD.h
+include/blaze/math/simd/SIMDPack.h
+include/blaze/math/simd/SIMDTrait.h
+include/blaze/math/simd/Set.h
+include/blaze/math/simd/Setzero.h
+include/blaze/math/simd/Sign.h
+include/blaze/math/simd/Sin.h
+include/blaze/math/simd/Sinh.h
+include/blaze/math/simd/Sqrt.h
+include/blaze/math/simd/Storea.h
+include/blaze/math/simd/Storeu.h
+include/blaze/math/simd/Stream.h
+include/blaze/math/simd/Sub.h
+include/blaze/math/simd/Sum.h
+include/blaze/math/simd/Tan.h
+include/blaze/math/simd/Tanh.h
+include/blaze/math/simd/Trunc.h
+include/blaze/math/smp/DenseMatrix.h
+include/blaze/math/smp/DenseVector.h
+include/blaze/math/smp/Functions.h
+include/blaze/math/smp/ParallelSection.h
+include/blaze/math/smp/SMP.h
+include/blaze/math/smp/SerialSection.h
+include/blaze/math/smp/SparseMatrix.h
+include/blaze/math/smp/SparseVector.h
+include/blaze/math/smp/ThreadMapping.h
+include/blaze/math/smp/default/DenseMatrix.h
+include/blaze/math/smp/default/DenseVector.h
+include/blaze/math/smp/default/Functions.h
+include/blaze/math/smp/default/SparseMatrix.h
+include/blaze/math/smp/default/SparseVector.h
+include/blaze/math/smp/hpx/DenseMatrix.h
+include/blaze/math/smp/hpx/DenseVector.h
+include/blaze/math/smp/hpx/Functions.h
+include/blaze/math/smp/openmp/DenseMatrix.h
+include/blaze/math/smp/openmp/DenseVector.h
+include/blaze/math/smp/openmp/Functions.h
+include/blaze/math/smp/threads/DenseMatrix.h
+include/blaze/math/smp/threads/DenseVector.h
+include/blaze/math/smp/threads/Functions.h
+include/blaze/math/smp/threads/ThreadBackend.h
+include/blaze/math/sparse/CompressedMatrix.h
+include/blaze/math/sparse/CompressedVector.h
+include/blaze/math/sparse/Forward.h
+include/blaze/math/sparse/IdentityMatrix.h
+include/blaze/math/sparse/MatrixAccessProxy.h
+include/blaze/math/sparse/SparseElement.h
+include/blaze/math/sparse/SparseMatrix.h
+include/blaze/math/sparse/SparseVector.h
+include/blaze/math/sparse/ValueIndexPair.h
+include/blaze/math/sparse/VectorAccessProxy.h
+include/blaze/math/traits/AddTrait.h
+include/blaze/math/traits/BandTrait.h
+include/blaze/math/traits/ColumnTrait.h
+include/blaze/math/traits/ColumnsTrait.h
+include/blaze/math/traits/CrossTrait.h
+include/blaze/math/traits/DeclDiagTrait.h
+include/blaze/math/traits/DeclHermTrait.h
+include/blaze/math/traits/DeclIdTrait.h
+include/blaze/math/traits/DeclLowTrait.h
+include/blaze/math/traits/DeclSymTrait.h
+include/blaze/math/traits/DeclUppTrait.h
+include/blaze/math/traits/DerestrictTrait.h
+include/blaze/math/traits/DivTrait.h
+include/blaze/math/traits/ElementsTrait.h
+include/blaze/math/traits/MapTrait.h
+include/blaze/math/traits/MultTrait.h
+include/blaze/math/traits/ReduceTrait.h
+include/blaze/math/traits/RowTrait.h
+include/blaze/math/traits/RowsTrait.h
+include/blaze/math/traits/SchurTrait.h
+include/blaze/math/traits/SubTrait.h
+include/blaze/math/traits/SubmatrixTrait.h
+include/blaze/math/traits/SubvectorTrait.h
+include/blaze/math/traits/Traits.h
+include/blaze/math/typetraits/HasAbs.h
+include/blaze/math/typetraits/HasAcos.h
+include/blaze/math/typetraits/HasAcosh.h
+include/blaze/math/typetraits/HasAdd.h
+include/blaze/math/typetraits/HasAsin.h
+include/blaze/math/typetraits/HasAsinh.h
+include/blaze/math/typetraits/HasAtan.h
+include/blaze/math/typetraits/HasAtan2.h
+include/blaze/math/typetraits/HasAtanh.h
+include/blaze/math/typetraits/HasCbrt.h
+include/blaze/math/typetraits/HasCeil.h
+include/blaze/math/typetraits/HasClamp.h
+include/blaze/math/typetraits/HasConj.h
+include/blaze/math/typetraits/HasConstDataAccess.h
+include/blaze/math/typetraits/HasCos.h
+include/blaze/math/typetraits/HasCosh.h
+include/blaze/math/typetraits/HasDiv.h
+include/blaze/math/typetraits/HasErf.h
+include/blaze/math/typetraits/HasErfc.h
+include/blaze/math/typetraits/HasExp.h
+include/blaze/math/typetraits/HasExp10.h
+include/blaze/math/typetraits/HasExp2.h
+include/blaze/math/typetraits/HasFloor.h
+include/blaze/math/typetraits/HasHypot.h
+include/blaze/math/typetraits/HasImag.h
+include/blaze/math/typetraits/HasInvCbrt.h
+include/blaze/math/typetraits/HasInvSqrt.h
+include/blaze/math/typetraits/HasLog.h
+include/blaze/math/typetraits/HasLog10.h
+include/blaze/math/typetraits/HasLog2.h
+include/blaze/math/typetraits/HasMax.h
+include/blaze/math/typetraits/HasMin.h
+include/blaze/math/typetraits/HasMult.h
+include/blaze/math/typetraits/HasMutableDataAccess.h
+include/blaze/math/typetraits/HasPow.h
+include/blaze/math/typetraits/HasReal.h
+include/blaze/math/typetraits/HasRound.h
+include/blaze/math/typetraits/HasSIMDAbs.h
+include/blaze/math/typetraits/HasSIMDAcos.h
+include/blaze/math/typetraits/HasSIMDAcosh.h
+include/blaze/math/typetraits/HasSIMDAdd.h
+include/blaze/math/typetraits/HasSIMDAsin.h
+include/blaze/math/typetraits/HasSIMDAsinh.h
+include/blaze/math/typetraits/HasSIMDAtan.h
+include/blaze/math/typetraits/HasSIMDAtan2.h
+include/blaze/math/typetraits/HasSIMDAtanh.h
+include/blaze/math/typetraits/HasSIMDCbrt.h
+include/blaze/math/typetraits/HasSIMDCeil.h
+include/blaze/math/typetraits/HasSIMDConj.h
+include/blaze/math/typetraits/HasSIMDCos.h
+include/blaze/math/typetraits/HasSIMDCosh.h
+include/blaze/math/typetraits/HasSIMDDiv.h
+include/blaze/math/typetraits/HasSIMDEqual.h
+include/blaze/math/typetraits/HasSIMDErf.h
+include/blaze/math/typetraits/HasSIMDErfc.h
+include/blaze/math/typetraits/HasSIMDExp.h
+include/blaze/math/typetraits/HasSIMDExp10.h
+include/blaze/math/typetraits/HasSIMDExp2.h
+include/blaze/math/typetraits/HasSIMDFloor.h
+include/blaze/math/typetraits/HasSIMDHypot.h
+include/blaze/math/typetraits/HasSIMDInvCbrt.h
+include/blaze/math/typetraits/HasSIMDInvSqrt.h
+include/blaze/math/typetraits/HasSIMDLog.h
+include/blaze/math/typetraits/HasSIMDLog10.h
+include/blaze/math/typetraits/HasSIMDLog2.h
+include/blaze/math/typetraits/HasSIMDMax.h
+include/blaze/math/typetraits/HasSIMDMin.h
+include/blaze/math/typetraits/HasSIMDMult.h
+include/blaze/math/typetraits/HasSIMDPow.h
+include/blaze/math/typetraits/HasSIMDRound.h
+include/blaze/math/typetraits/HasSIMDSign.h
+include/blaze/math/typetraits/HasSIMDSin.h
+include/blaze/math/typetraits/HasSIMDSinh.h
+include/blaze/math/typetraits/HasSIMDSqrt.h
+include/blaze/math/typetraits/HasSIMDSub.h
+include/blaze/math/typetraits/HasSIMDTan.h
+include/blaze/math/typetraits/HasSIMDTanh.h
+include/blaze/math/typetraits/HasSIMDTrunc.h
+include/blaze/math/typetraits/HasSign.h
+include/blaze/math/typetraits/HasSin.h
+include/blaze/math/typetraits/HasSinh.h
+include/blaze/math/typetraits/HasSqrt.h
+include/blaze/math/typetraits/HasSub.h
+include/blaze/math/typetraits/HasTan.h
+include/blaze/math/typetraits/HasTanh.h
+include/blaze/math/typetraits/HasTrunc.h
+include/blaze/math/typetraits/HighType.h
+include/blaze/math/typetraits/IsAdaptor.h
+include/blaze/math/typetraits/IsAddExpr.h
+include/blaze/math/typetraits/IsAligned.h
+include/blaze/math/typetraits/IsBLASCompatible.h
+include/blaze/math/typetraits/IsBand.h
+include/blaze/math/typetraits/IsBinaryMapExpr.h
+include/blaze/math/typetraits/IsColumn.h
+include/blaze/math/typetraits/IsColumnMajorMatrix.h
+include/blaze/math/typetraits/IsColumnVector.h
+include/blaze/math/typetraits/IsColumns.h
+include/blaze/math/typetraits/IsComputation.h
+include/blaze/math/typetraits/IsContiguous.h
+include/blaze/math/typetraits/IsCrossExpr.h
+include/blaze/math/typetraits/IsCustom.h
+include/blaze/math/typetraits/IsDeclDiagExpr.h
+include/blaze/math/typetraits/IsDeclExpr.h
+include/blaze/math/typetraits/IsDeclHermExpr.h
+include/blaze/math/typetraits/IsDeclLowExpr.h
+include/blaze/math/typetraits/IsDeclSymExpr.h
+include/blaze/math/typetraits/IsDeclUppExpr.h
+include/blaze/math/typetraits/IsDeclaration.h
+include/blaze/math/typetraits/IsDenseMatrix.h
+include/blaze/math/typetraits/IsDenseVector.h
+include/blaze/math/typetraits/IsDiagonal.h
+include/blaze/math/typetraits/IsDivExpr.h
+include/blaze/math/typetraits/IsElements.h
+include/blaze/math/typetraits/IsEvalExpr.h
+include/blaze/math/typetraits/IsExpression.h
+include/blaze/math/typetraits/IsGeneral.h
+include/blaze/math/typetraits/IsHermitian.h
+include/blaze/math/typetraits/IsIdentity.h
+include/blaze/math/typetraits/IsInitializer.h
+include/blaze/math/typetraits/IsInvertible.h
+include/blaze/math/typetraits/IsLower.h
+include/blaze/math/typetraits/IsMatEvalExpr.h
+include/blaze/math/typetraits/IsMatInvExpr.h
+include/blaze/math/typetraits/IsMatMapExpr.h
+include/blaze/math/typetraits/IsMatMatAddExpr.h
+include/blaze/math/typetraits/IsMatMatMapExpr.h
+include/blaze/math/typetraits/IsMatMatMultExpr.h
+include/blaze/math/typetraits/IsMatMatSubExpr.h
+include/blaze/math/typetraits/IsMatReduceExpr.h
+include/blaze/math/typetraits/IsMatScalarDivExpr.h
+include/blaze/math/typetraits/IsMatScalarMultExpr.h
+include/blaze/math/typetraits/IsMatSerialExpr.h
+include/blaze/math/typetraits/IsMatTransExpr.h
+include/blaze/math/typetraits/IsMatVecMultExpr.h
+include/blaze/math/typetraits/IsMatrix.h
+include/blaze/math/typetraits/IsMultExpr.h
+include/blaze/math/typetraits/IsNumericMatrix.h
+include/blaze/math/typetraits/IsNumericVector.h
+include/blaze/math/typetraits/IsOperation.h
+include/blaze/math/typetraits/IsOpposedView.h
+include/blaze/math/typetraits/IsPadded.h
+include/blaze/math/typetraits/IsProxy.h
+include/blaze/math/typetraits/IsReduceExpr.h
+include/blaze/math/typetraits/IsResizable.h
+include/blaze/math/typetraits/IsRestricted.h
+include/blaze/math/typetraits/IsRow.h
+include/blaze/math/typetraits/IsRowMajorMatrix.h
+include/blaze/math/typetraits/IsRowVector.h
+include/blaze/math/typetraits/IsRows.h
+include/blaze/math/typetraits/IsSIMDCombinable.h
+include/blaze/math/typetraits/IsSIMDEnabled.h
+include/blaze/math/typetraits/IsSIMDPack.h
+include/blaze/math/typetraits/IsSMPAssignable.h
+include/blaze/math/typetraits/IsSchurExpr.h
+include/blaze/math/typetraits/IsSerialExpr.h
+include/blaze/math/typetraits/IsShrinkable.h
+include/blaze/math/typetraits/IsSparseElement.h
+include/blaze/math/typetraits/IsSparseMatrix.h
+include/blaze/math/typetraits/IsSparseVector.h
+include/blaze/math/typetraits/IsSquare.h
+include/blaze/math/typetraits/IsStatic.h
+include/blaze/math/typetraits/IsStrictlyLower.h
+include/blaze/math/typetraits/IsStrictlyTriangular.h
+include/blaze/math/typetraits/IsStrictlyUpper.h
+include/blaze/math/typetraits/IsSubExpr.h
+include/blaze/math/typetraits/IsSubmatrix.h
+include/blaze/math/typetraits/IsSubvector.h
+include/blaze/math/typetraits/IsSymmetric.h
+include/blaze/math/typetraits/IsTVecMatMultExpr.h
+include/blaze/math/typetraits/IsTemporary.h
+include/blaze/math/typetraits/IsTransExpr.h
+include/blaze/math/typetraits/IsTransformation.h
+include/blaze/math/typetraits/IsTriangular.h
+include/blaze/math/typetraits/IsUnaryMapExpr.h
+include/blaze/math/typetraits/IsUniLower.h
+include/blaze/math/typetraits/IsUniTriangular.h
+include/blaze/math/typetraits/IsUniUpper.h
+include/blaze/math/typetraits/IsUniform.h
+include/blaze/math/typetraits/IsUpper.h
+include/blaze/math/typetraits/IsVecEvalExpr.h
+include/blaze/math/typetraits/IsVecMapExpr.h
+include/blaze/math/typetraits/IsVecScalarDivExpr.h
+include/blaze/math/typetraits/IsVecScalarMultExpr.h
+include/blaze/math/typetraits/IsVecSerialExpr.h
+include/blaze/math/typetraits/IsVecTVecMultExpr.h
+include/blaze/math/typetraits/IsVecTransExpr.h
+include/blaze/math/typetraits/IsVecVecAddExpr.h
+include/blaze/math/typetraits/IsVecVecDivExpr.h
+include/blaze/math/typetraits/IsVecVecMapExpr.h
+include/blaze/math/typetraits/IsVecVecMultExpr.h
+include/blaze/math/typetraits/IsVecVecSubExpr.h
+include/blaze/math/typetraits/IsVector.h
+include/blaze/math/typetraits/IsView.h
+include/blaze/math/typetraits/LowType.h
+include/blaze/math/typetraits/MaxSize.h
+include/blaze/math/typetraits/RemoveAdaptor.h
+include/blaze/math/typetraits/RequiresEvaluation.h
+include/blaze/math/typetraits/Size.h
+include/blaze/math/typetraits/StorageOrder.h
+include/blaze/math/typetraits/TransposeFlag.h
+include/blaze/math/typetraits/TypeTraits.h
+include/blaze/math/typetraits/UnderlyingBuiltin.h
+include/blaze/math/typetraits/UnderlyingElement.h
+include/blaze/math/typetraits/UnderlyingNumeric.h
+include/blaze/math/typetraits/YieldsDiagonal.h
+include/blaze/math/typetraits/YieldsHermitian.h
+include/blaze/math/typetraits/YieldsIdentity.h
+include/blaze/math/typetraits/YieldsLower.h
+include/blaze/math/typetraits/YieldsStrictlyLower.h
+include/blaze/math/typetraits/YieldsStrictlyTriangular.h
+include/blaze/math/typetraits/YieldsStrictlyUpper.h
+include/blaze/math/typetraits/YieldsSymmetric.h
+include/blaze/math/typetraits/YieldsTriangular.h
+include/blaze/math/typetraits/YieldsUniLower.h
+include/blaze/math/typetraits/YieldsUniTriangular.h
+include/blaze/math/typetraits/YieldsUniUpper.h
+include/blaze/math/typetraits/YieldsUpper.h
+include/blaze/math/views/Band.h
+include/blaze/math/views/Check.h
+include/blaze/math/views/Column.h
+include/blaze/math/views/Columns.h
+include/blaze/math/views/Elements.h
+include/blaze/math/views/Forward.h
+include/blaze/math/views/Row.h
+include/blaze/math/views/Rows.h
+include/blaze/math/views/Submatrix.h
+include/blaze/math/views/Subvector.h
+include/blaze/math/views/Views.h
+include/blaze/math/views/band/Band.h
+include/blaze/math/views/band/BandData.h
+include/blaze/math/views/band/BaseTemplate.h
+include/blaze/math/views/band/Dense.h
+include/blaze/math/views/band/Sparse.h
+include/blaze/math/views/column/BaseTemplate.h
+include/blaze/math/views/column/Column.h
+include/blaze/math/views/column/ColumnData.h
+include/blaze/math/views/column/Dense.h
+include/blaze/math/views/column/Sparse.h
+include/blaze/math/views/columns/BaseTemplate.h
+include/blaze/math/views/columns/Columns.h
+include/blaze/math/views/columns/ColumnsData.h
+include/blaze/math/views/columns/Dense.h
+include/blaze/math/views/columns/Sparse.h
+include/blaze/math/views/elements/BaseTemplate.h
+include/blaze/math/views/elements/Dense.h
+include/blaze/math/views/elements/Elements.h
+include/blaze/math/views/elements/ElementsData.h
+include/blaze/math/views/elements/Sparse.h
+include/blaze/math/views/row/BaseTemplate.h
+include/blaze/math/views/row/Dense.h
+include/blaze/math/views/row/Row.h
+include/blaze/math/views/row/RowData.h
+include/blaze/math/views/row/Sparse.h
+include/blaze/math/views/rows/BaseTemplate.h
+include/blaze/math/views/rows/Dense.h
+include/blaze/math/views/rows/Rows.h
+include/blaze/math/views/rows/RowsData.h
+include/blaze/math/views/rows/Sparse.h
+include/blaze/math/views/submatrix/BaseTemplate.h
+include/blaze/math/views/submatrix/Dense.h
+include/blaze/math/views/submatrix/Sparse.h
+include/blaze/math/views/submatrix/Submatrix.h
+include/blaze/math/views/submatrix/SubmatrixData.h
+include/blaze/math/views/subvector/BaseTemplate.h
+include/blaze/math/views/subvector/Dense.h
+include/blaze/math/views/subvector/Sparse.h
+include/blaze/math/views/subvector/Subvector.h
+include/blaze/math/views/subvector/SubvectorData.h
+include/blaze/system/Assertion.h
+include/blaze/system/BLAS.h
+include/blaze/system/Blocking.h
+include/blaze/system/CacheSize.h
+include/blaze/system/Compiler.h
+include/blaze/system/Debugging.h
+include/blaze/system/Deprecated.h
+include/blaze/system/Inline.h
+include/blaze/system/MPI.h
+include/blaze/system/Optimizations.h
+include/blaze/system/Platform.h
+include/blaze/system/Random.h
+include/blaze/system/Restrict.h
+include/blaze/system/SMP.h
+include/blaze/system/Signature.h
+include/blaze/system/StorageOrder.h
+include/blaze/system/System.h
+include/blaze/system/Thresholds.h
+include/blaze/system/TransposeFlag.h
+include/blaze/system/Vectorization.h
+include/blaze/system/Version.h
+include/blaze/system/WarningDisable.h
+include/blaze/util/Algorithms.h
+include/blaze/util/AlignedAllocator.h
+include/blaze/util/AlignedArray.h
+include/blaze/util/AlignmentCheck.h
+include/blaze/util/AsConst.h
+include/blaze/util/Assert.h
+include/blaze/util/CheckedDelete.h
+include/blaze/util/ColorMacros.h
+include/blaze/util/Complex.h
+include/blaze/util/Constraints.h
+include/blaze/util/DecltypeAuto.h
+include/blaze/util/DimensionOf.h
+include/blaze/util/DisableIf.h
+include/blaze/util/EmptyType.h
+include/blaze/util/EnableIf.h
+include/blaze/util/Exception.h
+include/blaze/util/FalseType.h
+include/blaze/util/FunctionTrace.h
+include/blaze/util/Indices.h
+include/blaze/util/InitializerList.h
+include/blaze/util/IntegralConstant.h
+include/blaze/util/InvalidType.h
+include/blaze/util/Limits.h
+include/blaze/util/MPL.h
+include/blaze/util/Memory.h
+include/blaze/util/MemoryPool.h
+include/blaze/util/Misalignment.h
+include/blaze/util/NonCopyable.h
+include/blaze/util/NonCreatable.h
+include/blaze/util/NullType.h
+include/blaze/util/NumericCast.h
+include/blaze/util/PointerCast.h
+include/blaze/util/Policies.h
+include/blaze/util/Random.h
+include/blaze/util/Serialization.h
+include/blaze/util/Singleton.h
+include/blaze/util/SmallVector.h
+include/blaze/util/StaticAssert.h
+include/blaze/util/Suffix.h
+include/blaze/util/Template.h
+include/blaze/util/Thread.h
+include/blaze/util/ThreadPool.h
+include/blaze/util/Time.h
+include/blaze/util/Timing.h
+include/blaze/util/TrueType.h
+include/blaze/util/TypeList.h
+include/blaze/util/TypeTraits.h
+include/blaze/util/Types.h
+include/blaze/util/UnsignedValue.h
+include/blaze/util/Unused.h
+include/blaze/util/Util.h
+include/blaze/util/ValueTraits.h
+include/blaze/util/algorithms/Algorithms.h
+include/blaze/util/algorithms/Destroy.h
+include/blaze/util/algorithms/DestroyAt.h
+include/blaze/util/algorithms/Max.h
+include/blaze/util/algorithms/Min.h
+include/blaze/util/algorithms/Transfer.h
+include/blaze/util/algorithms/UninitializedDefaultConstruct.h
+include/blaze/util/algorithms/UninitializedMove.h
+include/blaze/util/algorithms/UninitializedValueConstruct.h
+include/blaze/util/constraints/Arithmetic.h
+include/blaze/util/constraints/Array.h
+include/blaze/util/constraints/Assignable.h
+include/blaze/util/constraints/BaseOf.h
+include/blaze/util/constraints/Boolean.h
+include/blaze/util/constraints/Builtin.h
+include/blaze/util/constraints/Character.h
+include/blaze/util/constraints/Class.h
+include/blaze/util/constraints/Comparable.h
+include/blaze/util/constraints/Complex.h
+include/blaze/util/constraints/ComplexDouble.h
+include/blaze/util/constraints/ComplexFloat.h
+include/blaze/util/constraints/Const.h
+include/blaze/util/constraints/Constraints.h
+include/blaze/util/constraints/Constructible.h
+include/blaze/util/constraints/Convertible.h
+include/blaze/util/constraints/DerivedFrom.h
+include/blaze/util/constraints/Destructible.h
+include/blaze/util/constraints/Double.h
+include/blaze/util/constraints/Empty.h
+include/blaze/util/constraints/Enum.h
+include/blaze/util/constraints/Float.h
+include/blaze/util/constraints/FloatingPoint.h
+include/blaze/util/constraints/Integer.h
+include/blaze/util/constraints/Integral.h
+include/blaze/util/constraints/LValueReference.h
+include/blaze/util/constraints/Long.h
+include/blaze/util/constraints/LongDouble.h
+include/blaze/util/constraints/Numeric.h
+include/blaze/util/constraints/Object.h
+include/blaze/util/constraints/Pod.h
+include/blaze/util/constraints/Pointer.h
+include/blaze/util/constraints/RValueReference.h
+include/blaze/util/constraints/Rank.h
+include/blaze/util/constraints/Reference.h
+include/blaze/util/constraints/SameSize.h
+include/blaze/util/constraints/SameType.h
+include/blaze/util/constraints/Short.h
+include/blaze/util/constraints/Signed.h
+include/blaze/util/constraints/Size.h
+include/blaze/util/constraints/Subscriptable.h
+include/blaze/util/constraints/TypeRestriction.h
+include/blaze/util/constraints/Union.h
+include/blaze/util/constraints/Unsigned.h
+include/blaze/util/constraints/Valid.h
+include/blaze/util/constraints/Vectorizable.h
+include/blaze/util/constraints/Void.h
+include/blaze/util/constraints/Volatile.h
+include/blaze/util/functiontrace/FunctionTrace.h
+include/blaze/util/mpl/And.h
+include/blaze/util/mpl/Bool.h
+include/blaze/util/mpl/Bools.h
+include/blaze/util/mpl/Char.h
+include/blaze/util/mpl/Equal.h
+include/blaze/util/mpl/Greater.h
+include/blaze/util/mpl/If.h
+include/blaze/util/mpl/Int.h
+include/blaze/util/mpl/Less.h
+include/blaze/util/mpl/Long.h
+include/blaze/util/mpl/MPL.h
+include/blaze/util/mpl/Maximum.h
+include/blaze/util/mpl/Minimum.h
+include/blaze/util/mpl/Minus.h
+include/blaze/util/mpl/Modulus.h
+include/blaze/util/mpl/Nand.h
+include/blaze/util/mpl/Nor.h
+include/blaze/util/mpl/Not.h
+include/blaze/util/mpl/Or.h
+include/blaze/util/mpl/Plus.h
+include/blaze/util/mpl/PtrdiffT.h
+include/blaze/util/mpl/SizeT.h
+include/blaze/util/mpl/Times.h
+include/blaze/util/mpl/Xnor.h
+include/blaze/util/mpl/Xor.h
+include/blaze/util/policies/ArrayDelete.h
+include/blaze/util/policies/Deallocate.h
+include/blaze/util/policies/DefaultDelete.h
+include/blaze/util/policies/NoDelete.h
+include/blaze/util/policies/PtrDelete.h
+include/blaze/util/serialization/Archive.h
+include/blaze/util/serialization/Serialization.h
+include/blaze/util/singleton/Dependency.h
+include/blaze/util/singleton/Singleton.h
+include/blaze/util/threadpool/Task.h
+include/blaze/util/threadpool/TaskQueue.h
+include/blaze/util/threadpool/ThreadPool.h
+include/blaze/util/timing/CpuPolicy.h
+include/blaze/util/timing/CpuTimer.h
+include/blaze/util/timing/Timer.h
+include/blaze/util/timing/Timing.h
+include/blaze/util/timing/WcPolicy.h
+include/blaze/util/timing/WcTimer.h
+include/blaze/util/typelist/Append.h
+include/blaze/util/typelist/Contains.h
+include/blaze/util/typelist/ContainsRelated.h
+include/blaze/util/typelist/Erase.h
+include/blaze/util/typelist/EraseAll.h
+include/blaze/util/typelist/IndexOf.h
+include/blaze/util/typelist/Length.h
+include/blaze/util/typelist/TypeAt.h
+include/blaze/util/typelist/TypeList.h
+include/blaze/util/typelist/Unique.h
+include/blaze/util/typetraits/AddCV.h
+include/blaze/util/typetraits/AddConst.h
+include/blaze/util/typetraits/AddPointer.h
+include/blaze/util/typetraits/AddReference.h
+include/blaze/util/typetraits/AddVolatile.h
+include/blaze/util/typetraits/AlignmentOf.h
+include/blaze/util/typetraits/All.h
+include/blaze/util/typetraits/Any.h
+include/blaze/util/typetraits/CommonType.h
+include/blaze/util/typetraits/Decay.h
+include/blaze/util/typetraits/Extent.h
+include/blaze/util/typetraits/GetMemberType.h
+include/blaze/util/typetraits/HasMember.h
+include/blaze/util/typetraits/HasSize.h
+include/blaze/util/typetraits/HaveSameSize.h
+include/blaze/util/typetraits/IsArithmetic.h
+include/blaze/util/typetraits/IsArray.h
+include/blaze/util/typetraits/IsAssignable.h
+include/blaze/util/typetraits/IsBaseOf.h
+include/blaze/util/typetraits/IsBoolean.h
+include/blaze/util/typetraits/IsBuiltin.h
+include/blaze/util/typetraits/IsCharacter.h
+include/blaze/util/typetraits/IsClass.h
+include/blaze/util/typetraits/IsComplex.h
+include/blaze/util/typetraits/IsComplexDouble.h
+include/blaze/util/typetraits/IsComplexFloat.h
+include/blaze/util/typetraits/IsConst.h
+include/blaze/util/typetraits/IsConstructible.h
+include/blaze/util/typetraits/IsConvertible.h
+include/blaze/util/typetraits/IsDestructible.h
+include/blaze/util/typetraits/IsDouble.h
+include/blaze/util/typetraits/IsEmpty.h
+include/blaze/util/typetraits/IsEnum.h
+include/blaze/util/typetraits/IsFloat.h
+include/blaze/util/typetraits/IsFloatingPoint.h
+include/blaze/util/typetraits/IsInteger.h
+include/blaze/util/typetraits/IsIntegral.h
+include/blaze/util/typetraits/IsLValueReference.h
+include/blaze/util/typetraits/IsLong.h
+include/blaze/util/typetraits/IsLongDouble.h
+include/blaze/util/typetraits/IsNumeric.h
+include/blaze/util/typetraits/IsObject.h
+include/blaze/util/typetraits/IsPod.h
+include/blaze/util/typetraits/IsPointer.h
+include/blaze/util/typetraits/IsRValueReference.h
+include/blaze/util/typetraits/IsReference.h
+include/blaze/util/typetraits/IsSame.h
+include/blaze/util/typetraits/IsShort.h
+include/blaze/util/typetraits/IsSigned.h
+include/blaze/util/typetraits/IsUnion.h
+include/blaze/util/typetraits/IsUnsigned.h
+include/blaze/util/typetraits/IsValid.h
+include/blaze/util/typetraits/IsVectorizable.h
+include/blaze/util/typetraits/IsVoid.h
+include/blaze/util/typetraits/IsVolatile.h
+include/blaze/util/typetraits/MakeSigned.h
+include/blaze/util/typetraits/MakeUnsigned.h
+include/blaze/util/typetraits/Rank.h
+include/blaze/util/typetraits/RemoveAllExtents.h
+include/blaze/util/typetraits/RemoveCV.h
+include/blaze/util/typetraits/RemoveConst.h
+include/blaze/util/typetraits/RemoveExtent.h
+include/blaze/util/typetraits/RemovePointer.h
+include/blaze/util/typetraits/RemoveReference.h
+include/blaze/util/typetraits/RemoveVolatile.h
+include/blaze/util/typetraits/TypeTraits.h
+include/blaze/util/typetraits/Void.h
+include/blaze/util/valuetraits/IsEven.h
+include/blaze/util/valuetraits/IsMultipleOf.h
+include/blaze/util/valuetraits/IsOdd.h
+include/blaze/util/valuetraits/IsPowerOf.h
+include/blaze/util/valuetraits/ValueTraits.h
+%%DATADIR%%/cmake/blaze-config-version.cmake
+%%DATADIR%%/cmake/blaze-config.cmake
+%%DATADIR%%/cmake/blaze-targets.cmake