mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
release of tvmet (inactive for 2 years and developer unreachable) as the basis for eigen2, because it provides seemingly good expression template mechanisms, we want that, and it would take years to reinvent that wheel. We'll see. So this commit imports the last tvmet release.
137 lines
3.4 KiB
C++
137 lines
3.4 KiB
C++
/*
|
|
* Tiny Vector Matrix Library
|
|
* Dense Vector Matrix Libary of Tiny size using Expression Templates
|
|
*
|
|
* Copyright (C) 2001 - 2003 Olaf Petzold <opetzold@users.sourceforge.net>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
* $Id: TestComplexVector.h,v 1.1 2004/04/24 11:55:15 opetzold Exp $
|
|
*/
|
|
|
|
#ifndef TEST_COMPLEX_MATRIX_H
|
|
#define TEST_COMPLEX_MATRIX_H
|
|
|
|
#include <limits>
|
|
#include <algorithm>
|
|
#include <complex>
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
#include <tvmet/Vector.h>
|
|
#include <tvmet/util/General.h>
|
|
#include <tvmet/util/Incrementor.h>
|
|
|
|
|
|
template <class T>
|
|
class TestComplexVector : public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE( TestComplexVector );
|
|
CPPUNIT_TEST( RealImag );
|
|
CPPUNIT_TEST( Abs );
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
private:
|
|
typedef T value_type;
|
|
typedef std::complex<T> complex_type;
|
|
typedef tvmet::Vector<complex_type, 3> complex_vector;
|
|
typedef tvmet::Vector<value_type, 3> real_vector;
|
|
|
|
public:
|
|
TestComplexVector()
|
|
{ }
|
|
|
|
public: // cppunit interface
|
|
/** cppunit hook for fixture set up. */
|
|
void setUp();
|
|
|
|
/** cppunit hook for fixture tear down. */
|
|
void tearDown();
|
|
|
|
protected:
|
|
void RealImag();
|
|
void Abs();
|
|
|
|
private:
|
|
complex_vector v1;
|
|
|
|
private:
|
|
real_vector v1_real;
|
|
};
|
|
|
|
/*****************************************************************************
|
|
* Implementation Part I (cppunit part)
|
|
****************************************************************************/
|
|
|
|
template <class T>
|
|
void TestComplexVector<T>::setUp() {
|
|
// real part is equal to complex part, ranging from 0 to N=Sz
|
|
std::generate(v1.begin(), v1.end(),
|
|
tvmet::util::Incrementor<typename complex_vector::value_type>());
|
|
|
|
std::generate(v1_real.begin(), v1_real.end(),
|
|
tvmet::util::Incrementor<typename real_vector::value_type>());
|
|
}
|
|
|
|
template <class T>
|
|
void TestComplexVector<T>::tearDown() { }
|
|
|
|
/*****************************************************************************
|
|
* Implementation Part II
|
|
****************************************************************************/
|
|
|
|
|
|
/*
|
|
* real and imaginary parts, real and imag parts are equal
|
|
*/
|
|
template <class T>
|
|
void
|
|
TestComplexVector<T>::RealImag() {
|
|
real_vector r;
|
|
|
|
r = real(v1);
|
|
CPPUNIT_ASSERT( all_elements( r == v1_real ) );
|
|
|
|
r = imag(v1);
|
|
CPPUNIT_ASSERT( all_elements( r == v1_real ) );
|
|
}
|
|
|
|
|
|
/*
|
|
* abs
|
|
*/
|
|
template <class T>
|
|
void
|
|
TestComplexVector<T>::Abs() {
|
|
real_vector v, r;
|
|
|
|
v = abs(v1);
|
|
|
|
r = sqrt(pow(real(v1), 2) + pow(imag(v1), 2));
|
|
|
|
// we do have a precision problem
|
|
// CPPUNIT_ASSERT( all_elements( v == r ) );
|
|
|
|
real_vector eps(v - r);
|
|
CPPUNIT_ASSERT( all_elements( abs(eps) < std::numeric_limits<T>::epsilon() ) );
|
|
//std::cout << eps << std::endl;
|
|
}
|
|
|
|
#endif // TEST_COMPLEX_VECTOR_H
|
|
|
|
// Local Variables:
|
|
// mode:C++
|
|
// End:
|