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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
// This is core/vnl/vnl_complex_traits.h
#ifndef vnl_complex_traits_h_
#define vnl_complex_traits_h_
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma interface
#endif
//:
// \file
// \brief To allow templated algorithms to determine appropriate actions of conjugation, complexification etc.
// \author fsm, Oxford RRG, 26 Mar 1999
//
// \verbatim
// Modifications
// LSB (Manchester) 26/3/01 Documentation tidied
// \endverbatim
//-----------------------------------------------------------------------------
#include <vcl_complex.h>
#if 0 // The old implementation
//: Whether complex or not
enum { isreal = true };
//: Complex conjugation.
static T conjugate(T x);
//: Complexification.
static vcl_complex<T> complexify(T x);
#endif
template <class T> // the primary template is empty, by design.
struct vnl_complex_traits;
#define macro(T) \
VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits<T > \
{ \
enum { isreal = true }; \
static T conjugate(T x) { return x; } \
static vcl_complex<T> complexify(T x) { return vcl_complex<T >(x, (T)0); } \
}
#define makro(T) \
macro(signed T); \
macro(unsigned T)
makro(char);
makro(short);
makro(int);
makro(long);
#undef makro
#undef macro
VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits<float>
{
enum { isreal = true };
static float conjugate(float x) { return x; }
static vcl_complex<float> complexify(float x) { return vcl_complex<float>(x, 0.0f); }
};
VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits<double>
{
enum { isreal = true };
static double conjugate(double x) { return x; }
static vcl_complex<double> complexify(double x) { return vcl_complex<double>(x, 0.0); }
};
VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits<long double>
{
enum { isreal = true };
static long double conjugate(long double x) { return x; }
static vcl_complex<long double> complexify(long double x) { return vcl_complex<long double>(x, 0.0); }
};
VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits<vcl_complex<float> >
{
enum { isreal = false };
static vcl_complex<float> conjugate(vcl_complex<float> x) { return vcl_conj(x); }
static vcl_complex<float> complexify(float x) { return x; }
};
VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits<vcl_complex<double> >
{
enum { isreal = false };
static vcl_complex<double> conjugate(vcl_complex<double> x) { return vcl_conj(x); }
static vcl_complex<double> complexify(double x) { return x; }
};
VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits<vcl_complex<long double> >
{
enum { isreal = false };
static vcl_complex<long double> conjugate(vcl_complex<long double> x) { return vcl_conj(x); }
static vcl_complex<long double> complexify(long double x) { return x; }
};
#include <vnl/vnl_bignum.h>
VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits<vnl_bignum>
{
enum { isreal = true };
static vnl_bignum conjugate(vnl_bignum x) { return x; }
static vcl_complex<vnl_bignum> complexify(vnl_bignum x) { return vcl_complex<vnl_bignum>(x,vnl_bignum(0L)); }
};
VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits<vcl_complex<vnl_bignum> >
{
enum { isreal = false };
static vcl_complex<vnl_bignum> conjugate(vcl_complex<vnl_bignum> x) { return vcl_complex<vnl_bignum>(x.real(),-x.imag()); }
static vcl_complex<vnl_bignum> complexify(vcl_complex<vnl_bignum> x) { return x; }
};
#include <vnl/vnl_rational.h>
VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits<vnl_rational>
{
enum { isreal = true };
static vnl_rational conjugate(vnl_rational x) { return x; }
static vcl_complex<vnl_rational> complexify(vnl_rational x) { return vcl_complex<vnl_rational>(x, vnl_rational(0,1)); }
};
VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits<vcl_complex<vnl_rational> >
{
enum { isreal = false };
static vcl_complex<vnl_rational> conjugate(vcl_complex<vnl_rational> x) {return vcl_complex<vnl_rational>(x.real(),-x.imag());}
static vcl_complex<vnl_rational> complexify(vcl_complex<vnl_rational> x) { return x; }
};
#endif // vnl_complex_traits_h_
|