aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/Complex.cpp
blob: 969e3f4f9e827168226eaf92d49275f8b069673a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra. Eigen itself is part of the KDE project.
//
// Copyright (C) 2009 Mark Borgerding mark a borgerding net
//
// Eigen 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 3 of the License, or (at your option) any later version.
//
// Alternatively, you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of
// the License, or (at your option) any later version.
//
// Eigen 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 or the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License and a copy of the GNU General Public License along with
// Eigen. If not, see <http://www.gnu.org/licenses/>.
#ifdef EIGEN_TEST_FUNC
#  include "main.h"
#else 
#  include <iostream>
#  define CALL_SUBTEST(x) x
#  define VERIFY(x) x
#  define test_Complex main
#endif

#include <unsupported/Eigen/Complex>
#include <vector>

using namespace std;
using namespace Eigen;

template <typename T>
void take_std( std::complex<T> * dst, int n )
{
    for (int i=0;i<n;++i)
        dst[i] = std::complex<T>(i,i);
    cout << dst[n-1] << endl;
}

template <typename T>
void syntax()
{
    // this works fine
    Matrix< Complex<T>, 9, 1>  a;
    std::complex<T> * pa = &a[0];
    //Complex<T> * pa2 = &a[0];
    take_std( pa,9);

    // this does not work, but I wish it would
    // take_std(&a[0];)
    // this does
    take_std( (std::complex<T> *)&a[0],9);

    // this does not work, but it would be really nice
    //vector< Complex<T> > a; 
    // (on my gcc 4.4.1 )
    // std::vector assumes operator& returns a POD pointer

    // this works fine
    Complex<T> b[9];
    std::complex<T> * pb = &b[0]; // this works fine

    take_std( pb,9);
}

void test_Complex()
{
  CALL_SUBTEST( syntax<float>() );
  CALL_SUBTEST( syntax<double>() );
  CALL_SUBTEST( syntax<long double>() );
}