2010-01-20 18:51:59 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra.
|
|
|
|
//
|
2011-03-24 18:42:11 +08:00
|
|
|
// Copyright (C) 2010-2011 Jitse Niesen <jitse@maths.leeds.ac.uk>
|
2016-10-24 21:43:51 +08:00
|
|
|
// Copyright (C) 2016 Gael Guennebaud <gael.guennebaud@inria.fr>
|
2010-01-20 18:51:59 +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-01-20 18:51:59 +08:00
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
template<typename MatrixType>
|
|
|
|
bool equalsIdentity(const MatrixType& A)
|
|
|
|
{
|
|
|
|
typedef typename MatrixType::Scalar Scalar;
|
|
|
|
Scalar zero = static_cast<Scalar>(0);
|
|
|
|
|
|
|
|
bool offDiagOK = true;
|
2011-03-11 19:06:13 +08:00
|
|
|
for (Index i = 0; i < A.rows(); ++i) {
|
|
|
|
for (Index j = i+1; j < A.cols(); ++j) {
|
2010-01-20 18:51:59 +08:00
|
|
|
offDiagOK = offDiagOK && (A(i,j) == zero);
|
|
|
|
}
|
|
|
|
}
|
2011-03-11 19:06:13 +08:00
|
|
|
for (Index i = 0; i < A.rows(); ++i) {
|
2011-08-19 20:18:05 +08:00
|
|
|
for (Index j = 0; j < (std::min)(i, A.cols()); ++j) {
|
2010-01-20 18:51:59 +08:00
|
|
|
offDiagOK = offDiagOK && (A(i,j) == zero);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool diagOK = (A.diagonal().array() == 1).all();
|
|
|
|
return offDiagOK && diagOK;
|
2016-10-25 22:53:09 +08:00
|
|
|
|
2010-01-20 18:51:59 +08:00
|
|
|
}
|
|
|
|
|
2010-01-27 02:42:17 +08:00
|
|
|
template<typename VectorType>
|
|
|
|
void testVectorType(const VectorType& base)
|
|
|
|
{
|
2014-12-05 05:48:53 +08:00
|
|
|
typedef typename VectorType::Scalar Scalar;
|
2012-03-07 23:18:35 +08:00
|
|
|
|
|
|
|
const Index size = base.size();
|
|
|
|
|
2010-10-25 22:15:22 +08:00
|
|
|
Scalar high = internal::random<Scalar>(-500,500);
|
2012-03-07 23:18:35 +08:00
|
|
|
Scalar low = (size == 1 ? high : internal::random<Scalar>(-500,500));
|
2010-06-08 19:29:27 +08:00
|
|
|
if (low>high) std::swap(low,high);
|
2012-03-07 23:18:35 +08:00
|
|
|
|
2016-10-25 22:53:09 +08:00
|
|
|
// check low==high
|
|
|
|
if(internal::random<float>(0.f,1.f)<0.05f)
|
|
|
|
low = high;
|
|
|
|
|
2012-03-07 23:18:35 +08:00
|
|
|
const Scalar step = ((size == 1) ? 1 : (high-low)/(size-1));
|
2010-01-27 02:42:17 +08:00
|
|
|
|
|
|
|
// check whether the result yields what we expect it to do
|
|
|
|
VectorType m(base);
|
2010-07-22 20:04:00 +08:00
|
|
|
m.setLinSpaced(size,low,high);
|
2010-01-27 02:42:17 +08:00
|
|
|
|
2016-02-01 21:25:34 +08:00
|
|
|
if(!NumTraits<Scalar>::IsInteger)
|
|
|
|
{
|
|
|
|
VectorType n(size);
|
|
|
|
for (int i=0; i<size; ++i)
|
|
|
|
n(i) = low+i*step;
|
|
|
|
VERIFY_IS_APPROX(m,n);
|
|
|
|
}
|
|
|
|
|
2016-10-24 21:50:27 +08:00
|
|
|
if((!NumTraits<Scalar>::IsInteger) || ((high-low)>=size && (Index(high-low)%(size-1))==0) || (Index(high-low+1)<size && (size%Index(high-low+1))==0))
|
|
|
|
{
|
|
|
|
VectorType n(size);
|
|
|
|
if((!NumTraits<Scalar>::IsInteger) || (high-low>=size))
|
|
|
|
for (int i=0; i<size; ++i)
|
|
|
|
n(i) = size==1 ? low : (low + ((high-low)*Scalar(i))/(size-1));
|
|
|
|
else
|
|
|
|
for (int i=0; i<size; ++i)
|
|
|
|
n(i) = size==1 ? low : low + Scalar((double(high-low+1)*double(i))/double(size));
|
|
|
|
VERIFY_IS_APPROX(m,n);
|
2010-01-27 02:42:17 +08:00
|
|
|
|
2016-10-24 21:50:27 +08:00
|
|
|
// random access version
|
|
|
|
m = VectorType::LinSpaced(size,low,high);
|
|
|
|
VERIFY_IS_APPROX(m,n);
|
|
|
|
VERIFY( internal::isApprox(m(m.size()-1),high) );
|
|
|
|
VERIFY( size==1 || internal::isApprox(m(0),low) );
|
2016-10-25 02:27:21 +08:00
|
|
|
VERIFY_IS_EQUAL(m(m.size()-1) , high);
|
2016-10-24 21:50:27 +08:00
|
|
|
}
|
2010-01-27 02:42:17 +08:00
|
|
|
|
2016-10-25 02:27:21 +08:00
|
|
|
VERIFY( m(m.size()-1) <= high );
|
2016-10-25 22:53:09 +08:00
|
|
|
VERIFY( (m.array() <= high).all() );
|
|
|
|
VERIFY( (m.array() >= low).all() );
|
2016-10-25 02:27:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
VERIFY( m(m.size()-1) >= low );
|
|
|
|
if(size>=1)
|
|
|
|
{
|
|
|
|
VERIFY( internal::isApprox(m(0),low) );
|
|
|
|
VERIFY_IS_EQUAL(m(0) , low);
|
|
|
|
}
|
2010-01-27 02:42:17 +08:00
|
|
|
|
|
|
|
// check whether everything works with row and col major vectors
|
|
|
|
Matrix<Scalar,Dynamic,1> row_vector(size);
|
|
|
|
Matrix<Scalar,1,Dynamic> col_vector(size);
|
2010-07-22 20:04:00 +08:00
|
|
|
row_vector.setLinSpaced(size,low,high);
|
|
|
|
col_vector.setLinSpaced(size,low,high);
|
2014-12-16 23:23:47 +08:00
|
|
|
// when using the extended precision (e.g., FPU) the relative error might exceed 1 bit
|
|
|
|
// when computing the squared sum in isApprox, thus the 2x factor.
|
|
|
|
VERIFY( row_vector.isApprox(col_vector.transpose(), Scalar(2)*NumTraits<Scalar>::epsilon()));
|
2010-01-27 02:42:17 +08:00
|
|
|
|
|
|
|
Matrix<Scalar,Dynamic,1> size_changer(size+50);
|
2010-07-22 20:04:00 +08:00
|
|
|
size_changer.setLinSpaced(size,low,high);
|
2010-06-08 19:29:27 +08:00
|
|
|
VERIFY( size_changer.size() == size );
|
2012-03-07 22:34:39 +08:00
|
|
|
|
|
|
|
typedef Matrix<Scalar,1,1> ScalarMatrix;
|
|
|
|
ScalarMatrix scalar;
|
|
|
|
scalar.setLinSpaced(1,low,high);
|
|
|
|
VERIFY_IS_APPROX( scalar, ScalarMatrix::Constant(high) );
|
|
|
|
VERIFY_IS_APPROX( ScalarMatrix::LinSpaced(1,low,high), ScalarMatrix::Constant(high) );
|
2013-02-19 01:26:03 +08:00
|
|
|
|
|
|
|
// regression test for bug 526 (linear vectorized transversal)
|
2016-10-24 21:50:27 +08:00
|
|
|
if (size > 1 && (!NumTraits<Scalar>::IsInteger)) {
|
2013-02-19 01:26:03 +08:00
|
|
|
m.tail(size-1).setLinSpaced(low, high);
|
|
|
|
VERIFY_IS_APPROX(m(size-1), high);
|
|
|
|
}
|
2010-01-27 02:42:17 +08:00
|
|
|
}
|
|
|
|
|
2010-01-20 18:51:59 +08:00
|
|
|
template<typename MatrixType>
|
|
|
|
void testMatrixType(const MatrixType& m)
|
|
|
|
{
|
2016-08-31 21:45:25 +08:00
|
|
|
using std::abs;
|
2010-06-20 23:37:56 +08:00
|
|
|
const Index rows = m.rows();
|
|
|
|
const Index cols = m.cols();
|
2016-08-31 21:45:25 +08:00
|
|
|
typedef typename MatrixType::Scalar Scalar;
|
|
|
|
typedef typename MatrixType::RealScalar RealScalar;
|
|
|
|
|
|
|
|
Scalar s1;
|
|
|
|
do {
|
|
|
|
s1 = internal::random<Scalar>();
|
|
|
|
} while(abs(s1)<RealScalar(1e-5) && (!NumTraits<Scalar>::IsInteger));
|
2010-01-20 18:51:59 +08:00
|
|
|
|
|
|
|
MatrixType A;
|
|
|
|
A.setIdentity(rows, cols);
|
|
|
|
VERIFY(equalsIdentity(A));
|
|
|
|
VERIFY(equalsIdentity(MatrixType::Identity(rows, cols)));
|
2016-08-31 21:45:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
A = MatrixType::Constant(rows,cols,s1);
|
|
|
|
Index i = internal::random<Index>(0,rows-1);
|
|
|
|
Index j = internal::random<Index>(0,cols-1);
|
|
|
|
VERIFY_IS_APPROX( MatrixType::Constant(rows,cols,s1)(i,j), s1 );
|
|
|
|
VERIFY_IS_APPROX( MatrixType::Constant(rows,cols,s1).coeff(i,j), s1 );
|
|
|
|
VERIFY_IS_APPROX( A(i,j), s1 );
|
2010-01-20 18:51:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void test_nullary()
|
|
|
|
{
|
|
|
|
CALL_SUBTEST_1( testMatrixType(Matrix2d()) );
|
2011-03-07 23:41:59 +08:00
|
|
|
CALL_SUBTEST_2( testMatrixType(MatrixXcf(internal::random<int>(1,300),internal::random<int>(1,300))) );
|
|
|
|
CALL_SUBTEST_3( testMatrixType(MatrixXf(internal::random<int>(1,300),internal::random<int>(1,300))) );
|
|
|
|
|
2016-10-24 21:43:51 +08:00
|
|
|
for(int i = 0; i < g_repeat*10; i++) {
|
2011-03-07 23:41:59 +08:00
|
|
|
CALL_SUBTEST_4( testVectorType(VectorXd(internal::random<int>(1,300))) );
|
2011-03-24 18:42:11 +08:00
|
|
|
CALL_SUBTEST_5( testVectorType(Vector4d()) ); // regression test for bug 232
|
2011-03-07 23:41:59 +08:00
|
|
|
CALL_SUBTEST_6( testVectorType(Vector3d()) );
|
|
|
|
CALL_SUBTEST_7( testVectorType(VectorXf(internal::random<int>(1,300))) );
|
2011-03-24 18:42:11 +08:00
|
|
|
CALL_SUBTEST_8( testVectorType(Vector3f()) );
|
2015-10-08 23:27:01 +08:00
|
|
|
CALL_SUBTEST_8( testVectorType(Vector4f()) );
|
|
|
|
CALL_SUBTEST_8( testVectorType(Matrix<float,8,1>()) );
|
2012-03-07 23:18:35 +08:00
|
|
|
CALL_SUBTEST_8( testVectorType(Matrix<float,1,1>()) );
|
2016-02-01 21:25:34 +08:00
|
|
|
|
|
|
|
CALL_SUBTEST_9( testVectorType(VectorXi(internal::random<int>(1,300))) );
|
2016-02-01 22:00:04 +08:00
|
|
|
CALL_SUBTEST_9( testVectorType(Matrix<int,1,1>()) );
|
2011-03-07 23:41:59 +08:00
|
|
|
}
|
2016-02-01 21:25:34 +08:00
|
|
|
|
|
|
|
#ifdef EIGEN_TEST_PART_6
|
|
|
|
// Assignment of a RowVectorXd to a MatrixXd (regression test for bug #79).
|
|
|
|
VERIFY( (MatrixXd(RowVectorXd::LinSpaced(3, 0, 1)) - RowVector3d(0, 0.5, 1)).norm() < std::numeric_limits<double>::epsilon() );
|
|
|
|
#endif
|
2016-08-31 21:45:25 +08:00
|
|
|
|
2016-10-24 21:43:51 +08:00
|
|
|
#ifdef EIGEN_TEST_PART_9
|
|
|
|
// Check possible overflow issue
|
|
|
|
{
|
|
|
|
int n = 60000;
|
|
|
|
ArrayXi a1(n), a2(n);
|
|
|
|
a1.setLinSpaced(n, 0, n-1);
|
|
|
|
for(int i=0; i<n; ++i)
|
|
|
|
a2(i) = i;
|
|
|
|
VERIFY_IS_APPROX(a1,a2);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-08-31 21:45:25 +08:00
|
|
|
#ifdef EIGEN_TEST_PART_10
|
|
|
|
// check some internal logic
|
|
|
|
VERIFY(( internal::has_nullary_operator<internal::scalar_constant_op<double> >::value ));
|
|
|
|
VERIFY(( !internal::has_unary_operator<internal::scalar_constant_op<double> >::value ));
|
|
|
|
VERIFY(( !internal::has_binary_operator<internal::scalar_constant_op<double> >::value ));
|
|
|
|
VERIFY(( internal::functor_has_linear_access<internal::scalar_constant_op<double> >::ret ));
|
|
|
|
|
|
|
|
VERIFY(( !internal::has_nullary_operator<internal::scalar_identity_op<double> >::value ));
|
|
|
|
VERIFY(( !internal::has_unary_operator<internal::scalar_identity_op<double> >::value ));
|
|
|
|
VERIFY(( internal::has_binary_operator<internal::scalar_identity_op<double> >::value ));
|
|
|
|
VERIFY(( !internal::functor_has_linear_access<internal::scalar_identity_op<double> >::ret ));
|
|
|
|
|
2016-10-25 02:27:21 +08:00
|
|
|
VERIFY(( !internal::has_nullary_operator<internal::linspaced_op<float,float> >::value ));
|
|
|
|
VERIFY(( internal::has_unary_operator<internal::linspaced_op<float,float> >::value ));
|
|
|
|
VERIFY(( !internal::has_binary_operator<internal::linspaced_op<float,float> >::value ));
|
|
|
|
VERIFY(( internal::functor_has_linear_access<internal::linspaced_op<float,float> >::ret ));
|
2016-09-05 21:50:41 +08:00
|
|
|
|
2016-09-06 21:47:04 +08:00
|
|
|
// Regression unit test for a weird MSVC bug.
|
|
|
|
// Search "nullary_wrapper_workaround_msvc" in CoreEvaluators.h for the details.
|
|
|
|
// See also traits<Ref>::match.
|
2016-09-05 21:50:41 +08:00
|
|
|
{
|
|
|
|
MatrixXf A = MatrixXf::Random(3,3);
|
|
|
|
Ref<const MatrixXf> R = 2.0*A;
|
|
|
|
VERIFY_IS_APPROX(R, A+A);
|
|
|
|
|
|
|
|
Ref<const MatrixXf> R1 = MatrixXf::Random(3,3)+A;
|
|
|
|
|
|
|
|
VectorXi V = VectorXi::Random(3);
|
|
|
|
Ref<const VectorXi> R2 = VectorXi::LinSpaced(3,1,3)+V;
|
|
|
|
VERIFY_IS_APPROX(R2, V+Vector3i(1,2,3));
|
2016-09-06 21:47:04 +08:00
|
|
|
|
|
|
|
VERIFY(( internal::has_nullary_operator<internal::scalar_constant_op<float> >::value ));
|
|
|
|
VERIFY(( !internal::has_unary_operator<internal::scalar_constant_op<float> >::value ));
|
|
|
|
VERIFY(( !internal::has_binary_operator<internal::scalar_constant_op<float> >::value ));
|
|
|
|
VERIFY(( internal::functor_has_linear_access<internal::scalar_constant_op<float> >::ret ));
|
|
|
|
|
2016-10-25 02:27:21 +08:00
|
|
|
VERIFY(( !internal::has_nullary_operator<internal::linspaced_op<int,int> >::value ));
|
|
|
|
VERIFY(( internal::has_unary_operator<internal::linspaced_op<int,int> >::value ));
|
|
|
|
VERIFY(( !internal::has_binary_operator<internal::linspaced_op<int,int> >::value ));
|
|
|
|
VERIFY(( internal::functor_has_linear_access<internal::linspaced_op<int,int> >::ret ));
|
2016-09-05 21:50:41 +08:00
|
|
|
}
|
2016-08-31 21:45:25 +08:00
|
|
|
#endif
|
2010-01-20 18:51:59 +08:00
|
|
|
}
|