2010-02-09 21:07:37 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra.
|
|
|
|
//
|
2010-02-09 21:12:41 +08:00
|
|
|
// Copyright (C) 2010 Hauke Heibel <hauke.heibel@gmail.com>
|
2010-02-09 21:07:37 +08:00
|
|
|
//
|
2012-07-14 02:42:47 +08:00
|
|
|
// 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/.
|
2010-02-09 21:07:37 +08:00
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
2010-02-09 23:38:36 +08:00
|
|
|
template <typename MatrixType> void run_nesting_ops(const MatrixType& _m)
|
2010-02-09 21:07:37 +08:00
|
|
|
{
|
2014-02-19 22:16:11 +08:00
|
|
|
typename internal::nested_eval<MatrixType,2>::type m(_m);
|
2010-02-09 21:07:37 +08:00
|
|
|
|
2013-07-01 19:48:21 +08:00
|
|
|
// Make really sure that we are in debug mode!
|
|
|
|
VERIFY_RAISES_ASSERT(eigen_assert(false));
|
2010-02-09 21:07:37 +08:00
|
|
|
|
2010-02-09 23:38:36 +08:00
|
|
|
// The only intention of these tests is to ensure that this code does
|
2010-02-09 21:07:37 +08:00
|
|
|
// not trigger any asserts or segmentation faults... more to come.
|
2010-06-28 07:01:29 +08:00
|
|
|
VERIFY_IS_APPROX( (m.transpose() * m).diagonal().sum(), (m.transpose() * m).diagonal().sum() );
|
|
|
|
VERIFY_IS_APPROX( (m.transpose() * m).diagonal().array().abs().sum(), (m.transpose() * m).diagonal().array().abs().sum() );
|
2010-02-09 21:24:17 +08:00
|
|
|
|
2010-06-28 07:01:29 +08:00
|
|
|
VERIFY_IS_APPROX( (m.transpose() * m).array().abs().sum(), (m.transpose() * m).array().abs().sum() );
|
2010-02-09 21:07:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void test_nesting_ops()
|
|
|
|
{
|
|
|
|
CALL_SUBTEST_1(run_nesting_ops(MatrixXf::Random(25,25)));
|
|
|
|
CALL_SUBTEST_2(run_nesting_ops(MatrixXd::Random(25,25)));
|
|
|
|
CALL_SUBTEST_3(run_nesting_ops(Matrix4f::Random()));
|
|
|
|
CALL_SUBTEST_4(run_nesting_ops(Matrix4d::Random()));
|
|
|
|
}
|