diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-18 12:42:15 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-11-02 15:12:04 +0100 |
commit | 44861dcbfeee041223c4aac1ee075e92fa4daa01 (patch) | |
tree | 6dfdfd9637846a7aedd71ace97d7d2ad366496d7 /eigen/test/eigen2/eigen2_sizeof.cpp | |
parent | f3fe458b9e0a29a99a39d47d9a76dc18964b6fec (diff) |
update
Diffstat (limited to 'eigen/test/eigen2/eigen2_sizeof.cpp')
-rw-r--r-- | eigen/test/eigen2/eigen2_sizeof.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/eigen/test/eigen2/eigen2_sizeof.cpp b/eigen/test/eigen2/eigen2_sizeof.cpp new file mode 100644 index 0000000..ec1af5a --- /dev/null +++ b/eigen/test/eigen2/eigen2_sizeof.cpp @@ -0,0 +1,31 @@ +// This file is part of Eigen, a lightweight C++ template library +// for linear algebra. Eigen itself is part of the KDE project. +// +// Copyright (C) 2008 Gael Guennebaud <g.gael@free.fr> +// +// This Source Code Form is subject to the terms of the Mozilla +// Public License v. 2.0. If a copy of the MPL was not distributed +// with this file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#include "main.h" + +template<typename MatrixType> void verifySizeOf(const MatrixType&) +{ + typedef typename MatrixType::Scalar Scalar; + if (MatrixType::RowsAtCompileTime!=Dynamic && MatrixType::ColsAtCompileTime!=Dynamic) + VERIFY(sizeof(MatrixType)==sizeof(Scalar)*MatrixType::SizeAtCompileTime); + else + VERIFY(sizeof(MatrixType)==sizeof(Scalar*) + 2 * sizeof(typename MatrixType::Index)); +} + +void test_eigen2_sizeof() +{ + CALL_SUBTEST( verifySizeOf(Matrix<float, 1, 1>()) ); + CALL_SUBTEST( verifySizeOf(Matrix4d()) ); + CALL_SUBTEST( verifySizeOf(Matrix<double, 4, 2>()) ); + CALL_SUBTEST( verifySizeOf(Matrix<bool, 7, 5>()) ); + CALL_SUBTEST( verifySizeOf(MatrixXcf(3, 3)) ); + CALL_SUBTEST( verifySizeOf(MatrixXi(8, 12)) ); + CALL_SUBTEST( verifySizeOf(MatrixXcd(20, 20)) ); + CALL_SUBTEST( verifySizeOf(Matrix<float, 100, 100>()) ); +} |