Commit 5e90dd71 by Benjamin Kosnik Committed by Benjamin Kosnik

std_complex.h: Tweaks, include cmath for abs overloads.


2000-11-20  Benjamin Kosnik  <bkoz@redhat.com>

	* include/bits/std_complex.h: Tweaks, include cmath for abs overloads.
	* src/complex.cc: Remove cmath include, formatting tweaks, remove
	dead code.
	* include/c/bits/std_cmath.h: Formatting tweaks.
	* testsuite/26_numerics/complex_value.cc: New file, for catching
	bits gleaned from libstdc++/106.

	* testsuite/23_containers/vector_ctor.cc (test02): Add test from
	libstdc++/102.

From-SVN: r37591
parent 250333d0
2000-11-20 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/std_complex.h: Tweaks, include cmath for abs overloads.
* src/complex.cc: Remove cmath include, formatting tweaks, remove
dead code.
* include/c/bits/std_cmath.h: Formatting tweaks.
* testsuite/26_numerics/complex_value.cc: New file, for catching
bits gleaned from libstdc++/106.
* testsuite/23_containers/vector_ctor.cc (test02): Add test from
libstdc++/102.
* src/string-inst.cc: Tweaks.
2000-11-20 Joseph S. Myers <jsm28@cam.ac.uk> 2000-11-20 Joseph S. Myers <jsm28@cam.ac.uk>
* include/bits/c++config, include/bits/ios_base.h, * include/bits/c++config, include/bits/ios_base.h,
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
// the GNU General Public License. // the GNU General Public License.
// //
// ISO 14882/26.2.1 // ISO C++ 14882: 26.2 Complex Numbers
// Note: this is not a conforming implementation. // Note: this is not a conforming implementation.
// Initially implemented by Ulrich Drepper <drepper@cygnus.com> // Initially implemented by Ulrich Drepper <drepper@cygnus.com>
// Improved by Gabriel Dos Reis <dosreis@cmla.ens-cachan.fr> // Improved by Gabriel Dos Reis <dosreis@cmla.ens-cachan.fr>
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
#define _CPP_COMPLEX 1 #define _CPP_COMPLEX 1
#include <bits/c++config.h> #include <bits/c++config.h>
#include <bits/std_cmath.h>
#include <bits/std_iosfwd.h> #include <bits/std_iosfwd.h>
namespace std namespace std
...@@ -50,13 +51,13 @@ namespace std ...@@ -50,13 +51,13 @@ namespace std
template<> class complex<long double>; template<> class complex<long double>;
template<typename _Tp> _Tp abs(const complex<_Tp>&); template<typename _Tp> _Tp abs(const complex<_Tp>&);
template<typename _Tp> _Tp arg(const complex<_Tp>&); template<typename _Tp> _Tp arg(const complex<_Tp>&);
template<typename _Tp> _Tp norm(const complex<_Tp>&); template<typename _Tp> _Tp norm(const complex<_Tp>&);
template<typename _Tp> complex<_Tp> conj(const complex<_Tp>&); template<typename _Tp> complex<_Tp> conj(const complex<_Tp>&);
template<typename _Tp> complex<_Tp> polar(const _Tp&, const _Tp&); template<typename _Tp> complex<_Tp> polar(const _Tp&, const _Tp&);
// Transcendentals: // Transcendentals:
template<typename _Tp> complex<_Tp> cos(const complex<_Tp>&); template<typename _Tp> complex<_Tp> cos(const complex<_Tp>&);
template<typename _Tp> complex<_Tp> cosh(const complex<_Tp>&); template<typename _Tp> complex<_Tp> cosh(const complex<_Tp>&);
template<typename _Tp> complex<_Tp> exp(const complex<_Tp>&); template<typename _Tp> complex<_Tp> exp(const complex<_Tp>&);
...@@ -64,7 +65,7 @@ namespace std ...@@ -64,7 +65,7 @@ namespace std
template<typename _Tp> complex<_Tp> log10(const complex<_Tp>&); template<typename _Tp> complex<_Tp> log10(const complex<_Tp>&);
template<typename _Tp> complex<_Tp> pow(const complex<_Tp>&, int); template<typename _Tp> complex<_Tp> pow(const complex<_Tp>&, int);
template<typename _Tp> complex<_Tp> pow(const complex<_Tp>&, const _Tp&); template<typename _Tp> complex<_Tp> pow(const complex<_Tp>&, const _Tp&);
template<typename _Tp> complex<_Tp> pow (const complex<_Tp>&, template<typename _Tp> complex<_Tp> pow(const complex<_Tp>&,
const complex<_Tp>&); const complex<_Tp>&);
template<typename _Tp> complex<_Tp> pow(const _Tp&, const complex<_Tp>&); template<typename _Tp> complex<_Tp> pow(const _Tp&, const complex<_Tp>&);
template<typename _Tp> complex<_Tp> sin(const complex<_Tp>&); template<typename _Tp> complex<_Tp> sin(const complex<_Tp>&);
...@@ -74,10 +75,8 @@ namespace std ...@@ -74,10 +75,8 @@ namespace std
template<typename _Tp> complex<_Tp> tanh(const complex<_Tp>&); template<typename _Tp> complex<_Tp> tanh(const complex<_Tp>&);
//
// 26.2.2 Primary template class complex // 26.2.2 Primary template class complex
// template<typename _Tp>
template <typename _Tp>
class complex class complex
{ {
public: public:
...@@ -87,7 +86,7 @@ namespace std ...@@ -87,7 +86,7 @@ namespace std
// Let's the compiler synthetize the copy constructor // Let's the compiler synthetize the copy constructor
// complex (const complex<_Tp>&); // complex (const complex<_Tp>&);
template <typename _Up> template<typename _Up>
complex(const complex<_Up>&); complex(const complex<_Up>&);
_Tp real() const; _Tp real() const;
...@@ -102,15 +101,15 @@ namespace std ...@@ -102,15 +101,15 @@ namespace std
// Let's the compiler synthetize the // Let's the compiler synthetize the
// copy and assignment operator // copy and assignment operator
// complex<_Tp>& operator= (const complex<_Tp>&); // complex<_Tp>& operator= (const complex<_Tp>&);
template <typename _Up> template<typename _Up>
complex<_Tp>& operator=(const complex<_Up>&); complex<_Tp>& operator=(const complex<_Up>&);
template <typename _Up> template<typename _Up>
complex<_Tp>& operator+=(const complex<_Up>&); complex<_Tp>& operator+=(const complex<_Up>&);
template <typename _Up> template<typename _Up>
complex<_Tp>& operator-=(const complex<_Up>&); complex<_Tp>& operator-=(const complex<_Up>&);
template <typename _Up> template<typename _Up>
complex<_Tp>& operator*=(const complex<_Up>&); complex<_Tp>& operator*=(const complex<_Up>&);
template <typename _Up> template<typename _Up>
complex<_Tp>& operator/=(const complex<_Up>&); complex<_Tp>& operator/=(const complex<_Up>&);
private: private:
...@@ -125,312 +124,396 @@ namespace std ...@@ -125,312 +124,396 @@ namespace std
inline _Tp inline _Tp
complex<_Tp>::imag() const { return _M_imag; } complex<_Tp>::imag() const { return _M_imag; }
template<typename _Tp>
// inline
// 26.2.3 complex specializations complex<_Tp>::complex(const _Tp& __r, const _Tp& __i)
// : _M_real(__r), _M_imag(__i) { }
//
// complex<float> specialization
//
template<> class complex<float>
{
public:
typedef float value_type;
complex(float = 0.0f, float = 0.0f);
#ifdef _GLIBCPP_BUGGY_COMPLEX
complex(const complex& __z) : _M_value(__z._M_value) { }
#endif
explicit complex(const complex<double>&);
explicit complex(const complex<long double>&);
float real() const;
float imag() const;
complex<float>& operator=(float); template<typename _Tp>
complex<float>& operator+=(float); template<typename _Up>
complex<float>& operator-=(float); inline
complex<float>& operator*=(float); complex<_Tp>::complex(const complex<_Up>& __z)
complex<float>& operator/=(float); : _M_real(__z.real()), _M_imag(__z.imag()) { }
// Let's the compiler synthetize the copy and assignment template<typename _Tp>
// operator. It always does a pretty good job. complex<_Tp>&
// complex& operator= (const complex&); complex<_Tp>::operator=(const _Tp& __t)
template <typename _Tp> {
complex<float>&operator=(const complex<_Tp>&); _M_real = __t;
template <typename _Tp> _M_imag = _Tp();
complex<float>& operator+=(const complex<_Tp>&); return *this;
template <class _Tp> }
complex<float>& operator-=(const complex<_Tp>&);
template <class _Tp>
complex<float>& operator*=(const complex<_Tp>&);
template <class _Tp>
complex<float>&operator/=(const complex<_Tp>&);
private:
typedef __complex__ float _ComplexT;
_ComplexT _M_value;
complex(_ComplexT __z) : _M_value(__z) { } // 26.2.5/1
template<typename _Tp>
friend class complex<double>; inline complex<_Tp>&
friend class complex<long double>; complex<_Tp>::operator+=(const _Tp& __t)
{
_M_real += __t;
return *this;
}
friend complex<float> pow<>(const complex<float>&, int); // 26.2.5/3
friend complex<float> pow<>(const complex<float>&, const float&); template<typename _Tp>
friend complex<float> pow<>(const complex<float>&, inline complex<_Tp>&
const complex<float>&); complex<_Tp>::operator-=(const _Tp& __t)
friend complex<float> pow<>(const float&, const complex<float>&); {
friend complex<float> sqrt<>(const complex<float>&); _M_real -= __t;
friend complex<float> tan<>(const complex<float>&); return *this;
friend complex<float> tanh<>(const complex<float>&); }
};
inline float // 26.2.5/5
complex<float>::real() const template<typename _Tp>
{ return __real__ _M_value; } complex<_Tp>&
complex<_Tp>::operator*=(const _Tp& __t)
{
_M_real *= __t;
_M_imag *= __t;
return *this;
}
inline float // 26.2.5/7
complex<float>::imag() const template<typename _Tp>
{ return __imag__ _M_value; } complex<_Tp>&
complex<_Tp>::operator/=(const _Tp& __t)
{
_M_real /= __t;
_M_imag /= __t;
return *this;
}
template<typename _Tp>
template<typename _Up>
complex<_Tp>&
complex<_Tp>::operator=(const complex<_Up>& __z)
{
_M_real = __z.real();
_M_imag = __z.imag();
return *this;
}
// // 26.2.5/9
// complex<double> specialization template<typename _Tp>
// template<typename _Up>
template<> class complex<double> complex<_Tp>&
{ complex<_Tp>::operator+=(const complex<_Up>& __z)
public: {
typedef double value_type; _M_real += __z.real();
_M_imag += __z.imag();
return *this;
}
complex(double =0.0, double =0.0); // 26.2.5/11
#ifdef _GLIBCPP_BUGGY_COMPLEX template<typename _Tp>
complex(const complex& __z) : _M_value(__z._M_value) { } template<typename _Up>
#endif complex<_Tp>&
complex(const complex<float>&); complex<_Tp>::operator-=(const complex<_Up>& __z)
explicit complex(const complex<long double>&); {
_M_real -= __z.real();
double real() const; _M_imag -= __z.imag();
double imag() const; return *this;
}
complex<double>& operator=(double);
complex<double>& operator+=(double);
complex<double>& operator-=(double);
complex<double>& operator*=(double);
complex<double>& operator/=(double);
// The compiler will synthetize this, efficiently. // 26.2.5/13
// complex& operator= (const complex&); // XXX: This is a grammar school implementation.
template <typename _Tp> template<typename _Tp>
complex<double>& operator=(const complex<_Tp>&); template<typename _Up>
template <typename _Tp> complex<_Tp>&
complex<double>& operator+=(const complex<_Tp>&); complex<_Tp>::operator*=(const complex<_Up>& __z)
template <typename _Tp> {
complex<double>& operator-=(const complex<_Tp>&); const _Tp __r = _M_real * __z.real() - _M_imag * __z.imag();
template <typename _Tp> _M_imag = _M_real * __z.imag() + _M_imag * __z.real();
complex<double>& operator*=(const complex<_Tp>&); _M_real = __r;
template <typename _Tp> return *this;
complex<double>& operator/=(const complex<_Tp>&); }
private: // 26.2.5/15
typedef __complex__ double _ComplexT; // XXX: This is a grammar school implementation.
_ComplexT _M_value; template<typename _Tp>
template<typename _Up>
complex<_Tp>&
complex<_Tp>::operator/=(const complex<_Up>& __z)
{
const _Tp __r = _M_real * __z.real() + _M_imag * __z.imag();
const _Tp __n = norm(__z);
_M_imag = (_M_real * __z.imag() - _M_imag * __z.real()) / __n;
_M_real = __r / __n;
return *this;
}
// Operators:
template<typename _Tp>
inline complex<_Tp>
operator+(const complex<_Tp>& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__x) += __y; }
complex(_ComplexT __z) : _M_value(__z) { } template<typename _Tp>
inline complex<_Tp>
friend class complex<float>; operator+(const complex<_Tp>& __x, const _Tp& __y)
friend class complex<long double>; { return complex<_Tp> (__x) += __y; }
friend complex<double> pow<>(const complex<double>&, int); template<typename _Tp>
friend complex<double> pow<>(const complex<double>&, const double&); inline complex<_Tp>
friend complex<double> pow<>(const complex<double>&, operator+(const _Tp& __x, const complex<_Tp>& __y)
const complex<double>&); { return complex<_Tp> (__y) += __x; }
friend complex<double> pow<>(const double&, const complex<double>&);
friend complex<double> sqrt<>(const complex<double>&);
friend complex<double> tan<>(const complex<double>&);
friend complex<double> tanh<>(const complex<double>&);
};
inline double template<typename _Tp>
complex<double>::real() const inline complex<_Tp>
{ return __real__ _M_value; } operator-(const complex<_Tp>& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__x) -= __y; }
template<typename _Tp>
inline complex<_Tp>
operator-(const complex<_Tp>& __x, const _Tp& __y)
{ return complex<_Tp> (__x) -= __y; }
inline double template<typename _Tp>
complex<double>::imag() const inline complex<_Tp>
{ return __imag__ _M_value; } operator-(const _Tp& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__x) -= __y; }
template<typename _Tp>
inline complex<_Tp>
operator*(const complex<_Tp>& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__x) *= __y; }
// template<typename _Tp>
// complex<long double> specialization inline complex<_Tp>
// operator*(const complex<_Tp>& __x, const _Tp& __y)
template<> class complex<long double> { return complex<_Tp> (__x) *= __y; }
{
public:
typedef long double value_type;
complex(long double = 0.0L, long double = 0.0L); template<typename _Tp>
#ifdef _GLIBCPP_BUGGY_COMPLEX inline complex<_Tp>
complex(const complex& __z) : _M_value(__z._M_value) { } operator*(const _Tp& __x, const complex<_Tp>& __y)
#endif { return complex<_Tp> (__y) *= __x; }
complex(const complex<float>&);
complex(const complex<double>&);
long double real() const; template<typename _Tp>
long double imag() const; inline complex<_Tp>
operator/(const complex<_Tp>& __x, const complex<_Tp>& __y)
complex<long double>& operator= (long double); { return complex<_Tp> (__x) /= __y; }
complex<long double>& operator+= (long double);
complex<long double>& operator-= (long double); template<typename _Tp>
complex<long double>& operator*= (long double); inline complex<_Tp>
complex<long double>& operator/= (long double); operator/(const complex<_Tp>& __x, const _Tp& __y)
{ return complex<_Tp> (__x) /= __y; }
// The compiler knows how to do this efficiently
// complex& operator= (const complex&);
template<typename _Tp>
complex<long double>& operator=(const complex<_Tp>&);
template<typename _Tp>
complex<long double>& operator+=(const complex<_Tp>&);
template<typename _Tp>
complex<long double>& operator-=(const complex<_Tp>&);
template<typename _Tp>
complex<long double>& operator*=(const complex<_Tp>&);
template<typename _Tp>
complex<long double>& operator/=(const complex<_Tp>&);
private: template<typename _Tp>
typedef __complex__ long double _ComplexT; inline complex<_Tp>
_ComplexT _M_value; operator/(const _Tp& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__x) /= __y; }
complex(_ComplexT __z) : _M_value(__z) { } template<typename _Tp>
inline complex<_Tp>
operator+(const complex<_Tp>& __x)
{ return __x; }
friend class complex<float>; template<typename _Tp>
friend class complex<double>; inline complex<_Tp>
operator-(const complex<_Tp>& __x)
{ return complex<_Tp>(-__x.real(), -__x.imag()); }
friend complex<long double> pow<>(const complex<long double>&, int); template<typename _Tp>
friend complex<long double> pow<>(const complex<long double>&, inline bool
const long double&); operator==(const complex<_Tp>& __x, const complex<_Tp>& __y)
friend complex<long double> pow<>(const complex<long double>&, { return __x.real() == __y.real() && __x.imag() == __y.imag(); }
const complex<long double>&);
friend complex<long double> pow<>(const long double&,
const complex<long double>&);
friend complex<long double> sqrt<>(const complex<long double>&);
friend complex<long double> tan<>(const complex<long double>&);
friend complex<long double> tanh<>(const complex<long double>&);
};
inline template<typename _Tp>
complex<long double>::complex(long double __r, long double __i) inline bool
{ operator==(const complex<_Tp>& __x, const _Tp& __y)
__real__ _M_value = __r; { return __x.real() == __y && __x.imag() == _Tp(); }
__imag__ _M_value = __i;
}
inline template<typename _Tp>
complex<long double>::complex(const complex<float>& __z) inline bool
: _M_value(_ComplexT(__z._M_value)) { } operator==(const _Tp& __x, const complex<_Tp>& __y)
{ return __x == __y.real() && _Tp() == __y.imag(); }
inline template<typename _Tp>
complex<long double>::complex(const complex<double>& __z) inline bool
: _M_value(_ComplexT(__z._M_value)) { } operator!=(const complex<_Tp>& __x, const complex<_Tp>& __y)
{ return __x.real() != __y.real() || __x.imag() != __y.imag(); }
inline long double template<typename _Tp>
complex<long double>::real() const inline bool
{ return __real__ _M_value; } operator!=(const complex<_Tp>& __x, const _Tp& __y)
{ return __x.real() != __y || __x.imag() != _Tp(); }
inline long double template<typename _Tp>
complex<long double>::imag() const inline bool
{ return __imag__ _M_value; } operator!=(const _Tp& __x, const complex<_Tp>& __y)
{ return __x != __y.real() || _Tp() != __y.imag(); }
inline complex<long double>& template<typename _Tp, typename _CharT, class _Traits>
complex<long double>::operator=(long double __r) basic_istream<_CharT, _Traits>&
{ operator>>(basic_istream<_CharT, _Traits>&, complex<_Tp>&);
__real__ _M_value = __r;
__imag__ _M_value = 0.0L;
return *this;
}
inline complex<long double>& template<typename _Tp, typename _CharT, class _Traits>
complex<long double>::operator+=(long double __r) basic_ostream<_CharT, _Traits>&
{ operator<<(basic_ostream<_CharT, _Traits>&, const complex<_Tp>&);
__real__ _M_value += __r;
return *this;
}
inline complex<long double>& // Values
complex<long double>::operator-=(long double __r) template<typename _Tp>
{ inline _Tp
__real__ _M_value -= __r; real(const complex<_Tp>& __z)
return *this; { return __z.real(); }
}
template<typename _Tp>
inline _Tp
imag(const complex<_Tp>& __z)
{ return __z.imag(); }
inline complex<long double>& template<typename _Tp>
complex<long double>::operator*=(long double __r) inline _Tp
{ abs(const complex<_Tp>& __z)
__real__ _M_value *= __r; {
return *this; _Tp __x = __z.real();
} _Tp __y = __z.imag();
const _Tp __s = abs(__x) + abs(__y);
if (__s == _Tp()) // well ...
return __s;
__x /= __s;
__y /= __s;
return __s * sqrt(__x * __x + __y * __y);
}
inline complex<long double>& template<typename _Tp>
complex<long double>::operator/=(long double __r) inline _Tp
{ arg(const complex<_Tp>& __z)
__real__ _M_value /= __r; { return atan2(__z.imag(), __z.real()); }
return *this;
}
template<typename _Tp> template<typename _Tp>
inline complex<long double>& inline _Tp
complex<long double>::operator=(const complex<_Tp>& __z) norm(const complex<_Tp>& __z)
{ {
__real__ _M_value = __z.real(); _Tp __res = abs(__z);
__imag__ _M_value = __z.imag(); return __res * __res;
return *this;
} }
template<typename _Tp> template<typename _Tp>
inline complex<long double>& inline complex<_Tp>
complex<long double>::operator+=(const complex<_Tp>& __z) polar(const _Tp& __rho, const _Tp& __theta)
{ return complex<_Tp>(__rho * cos(__theta), __rho * sin(__theta)); }
template<typename _Tp>
inline complex<_Tp>
conj(const complex<_Tp>& __z)
{ return complex<_Tp>(__z.real(), -__z.imag()); }
// Transcendentals
template<typename _Tp>
inline complex<_Tp>
cos(const complex<_Tp>& __z)
{ {
__real__ _M_value += __z.real(); const _Tp __x = __z.real();
__imag__ _M_value += __z.imag(); const _Tp __y = __z.imag();
return *this; return complex<_Tp>(cos(__x) * cosh(__y), -sin(__x) * sinh(__y));
} }
template<typename _Tp> template<typename _Tp>
inline complex<long double>& inline complex<_Tp>
complex<long double>::operator-=(const complex<_Tp>& __z) cosh(const complex<_Tp>& __z)
{ {
__real__ _M_value -= __z.real(); const _Tp __x = __z.real();
__imag__ _M_value -= __z.imag(); const _Tp __y = __z.imag();
return *this; return complex<_Tp>(cosh(__x) * cos(__y), sinh(__x) * sin(__y));
} }
template<typename _Tp> template<typename _Tp>
inline complex<long double>& inline complex<_Tp>
complex<long double>::operator*=(const complex<_Tp>& __z) exp(const complex<_Tp>& __z)
{ return polar(exp(__z.real()), __z.imag()); }
template<typename _Tp>
inline complex<_Tp>
log(const complex<_Tp>& __z)
{ return complex<_Tp>(log(abs(__z)), arg(__z)); }
template<typename _Tp>
inline complex<_Tp>
log10(const complex<_Tp>& __z)
{ return log(__z) / log(_Tp(10.0)); }
template<typename _Tp>
inline complex<_Tp>
sin(const complex<_Tp>& __z)
{ {
_ComplexT __t; const _Tp __x = __z.real();
__real__ __t = __z.real(); const _Tp __y = __z.imag();
__imag__ __t = __z.imag(); return complex<_Tp>(sin(__x) * cosh(__y), cos(__x) * sinh(__y));
_M_value *= __t;
return *this;
} }
template<typename _Tp> template<typename _Tp>
inline complex<long double>& inline complex<_Tp>
complex<long double>::operator/=(const complex<_Tp>& __z) sinh(const complex<_Tp>& __z)
{ {
_ComplexT __t; const _Tp __x = __z.real();
__real__ __t = __z.real(); const _Tp __y = __z.imag();
__imag__ __t = __z.imag(); return complex<_Tp>(sinh(__x) * cos(__y), cosh(__x) * sin(__y));
_M_value /= __t;
return *this;
} }
// // 26.2.3 complex specializations
// complex<float> continued. // complex<float> specialization
// template<> class complex<float>
{
public:
typedef float value_type;
complex(float = 0.0f, float = 0.0f);
#ifdef _GLIBCPP_BUGGY_COMPLEX
complex(const complex& __z) : _M_value(__z._M_value) { }
#endif
explicit complex(const complex<double>&);
explicit complex(const complex<long double>&);
float real() const;
float imag() const;
complex<float>& operator=(float);
complex<float>& operator+=(float);
complex<float>& operator-=(float);
complex<float>& operator*=(float);
complex<float>& operator/=(float);
// Let's the compiler synthetize the copy and assignment
// operator. It always does a pretty good job.
// complex& operator= (const complex&);
template<typename _Tp>
complex<float>&operator=(const complex<_Tp>&);
template<typename _Tp>
complex<float>& operator+=(const complex<_Tp>&);
template<class _Tp>
complex<float>& operator-=(const complex<_Tp>&);
template<class _Tp>
complex<float>& operator*=(const complex<_Tp>&);
template<class _Tp>
complex<float>&operator/=(const complex<_Tp>&);
private:
typedef __complex__ float _ComplexT;
_ComplexT _M_value;
complex(_ComplexT __z) : _M_value(__z) { }
friend class complex<double>;
friend class complex<long double>;
friend complex<float> pow<>(const complex<float>&, int);
friend complex<float> pow<>(const complex<float>&, const float&);
friend complex<float> pow<>(const complex<float>&,
const complex<float>&);
friend complex<float> pow<>(const float&, const complex<float>&);
friend complex<float> sqrt<>(const complex<float>&);
friend complex<float> tan<>(const complex<float>&);
friend complex<float> tanh<>(const complex<float>&);
};
inline float
complex<float>::real() const
{ return __real__ _M_value; }
inline float
complex<float>::imag() const
{ return __imag__ _M_value; }
inline inline
complex<float>::complex(float r, float i) complex<float>::complex(float r, float i)
{ {
...@@ -438,14 +521,6 @@ namespace std ...@@ -438,14 +521,6 @@ namespace std
__imag__ _M_value = i; __imag__ _M_value = i;
} }
inline
complex<float>::complex(const complex<double>& __z)
: _M_value(_ComplexT(__z._M_value)) { }
inline
complex<float>::complex(const complex<long double>& __z)
: _M_value(_ComplexT(__z._M_value)) { }
inline complex<float>& inline complex<float>&
complex<float>::operator=(float __f) complex<float>::operator=(float __f)
{ {
...@@ -491,50 +566,109 @@ namespace std ...@@ -491,50 +566,109 @@ namespace std
return *this; return *this;
} }
template<typename _Tp> template<typename _Tp>
inline complex<float>& inline complex<float>&
complex<float>::operator+=(const complex<_Tp>& __z) complex<float>::operator+=(const complex<_Tp>& __z)
{ {
__real__ _M_value += __z.real(); __real__ _M_value += __z.real();
__imag__ _M_value += __z.imag(); __imag__ _M_value += __z.imag();
return *this; return *this;
} }
template<typename _Tp> template<typename _Tp>
inline complex<float>& inline complex<float>&
complex<float>::operator-=(const complex<_Tp>& __z) complex<float>::operator-=(const complex<_Tp>& __z)
{ {
__real__ _M_value -= __z.real(); __real__ _M_value -= __z.real();
__imag__ _M_value -= __z.real(); __imag__ _M_value -= __z.real();
return *this; return *this;
} }
template<typename _Tp>
inline complex<float>&
complex<float>::operator*=(const complex<_Tp>& __z)
{
_ComplexT __t;
__real__ __t = __z.real();
__imag__ __t = __z.imag();
_M_value *= __t;
return *this;
}
template<typename _Tp>
inline complex<float>&
complex<float>::operator/=(const complex<_Tp>& __z)
{
_ComplexT __t;
__real__ __t = __z.real();
__imag__ __t = __z.imag();
_M_value /= __t;
return *this;
}
// 26.2.3 complex specializations
// complex<double> specialization
template<> class complex<double>
{
public:
typedef double value_type;
complex(double =0.0, double =0.0);
#ifdef _GLIBCPP_BUGGY_COMPLEX
complex(const complex& __z) : _M_value(__z._M_value) { }
#endif
explicit complex(const complex<float>&);
explicit complex(const complex<long double>&);
double real() const;
double imag() const;
complex<double>& operator=(double);
complex<double>& operator+=(double);
complex<double>& operator-=(double);
complex<double>& operator*=(double);
complex<double>& operator/=(double);
// The compiler will synthetize this, efficiently.
// complex& operator= (const complex&);
template<typename _Tp>
complex<double>& operator=(const complex<_Tp>&);
template<typename _Tp>
complex<double>& operator+=(const complex<_Tp>&);
template<typename _Tp>
complex<double>& operator-=(const complex<_Tp>&);
template<typename _Tp>
complex<double>& operator*=(const complex<_Tp>&);
template<typename _Tp>
complex<double>& operator/=(const complex<_Tp>&);
private:
typedef __complex__ double _ComplexT;
_ComplexT _M_value;
complex(_ComplexT __z) : _M_value(__z) { }
friend class complex<float>;
friend class complex<long double>;
template<typename _Tp> friend complex<double> pow<>(const complex<double>&, int);
inline complex<float>& friend complex<double> pow<>(const complex<double>&, const double&);
complex<float>::operator*=(const complex<_Tp>& __z) friend complex<double> pow<>(const complex<double>&,
{ const complex<double>&);
_ComplexT __t; friend complex<double> pow<>(const double&, const complex<double>&);
__real__ __t = __z.real(); friend complex<double> sqrt<>(const complex<double>&);
__imag__ __t = __z.imag(); friend complex<double> tan<>(const complex<double>&);
_M_value *= __t; friend complex<double> tanh<>(const complex<double>&);
return *this; };
}
template<typename _Tp> inline double
inline complex<float>& complex<double>::real() const
complex<float>::operator/=(const complex<_Tp>& __z) { return __real__ _M_value; }
{
_ComplexT __t;
__real__ __t = __z.real();
__imag__ __t = __z.imag();
_M_value /= __t;
return *this;
}
inline double
complex<double>::imag() const
{ return __imag__ _M_value; }
//
// complex<double> continued.
//
inline inline
complex<double>::complex(double __r, double __i) complex<double>::complex(double __r, double __i)
{ {
...@@ -542,17 +676,6 @@ namespace std ...@@ -542,17 +676,6 @@ namespace std
__imag__ _M_value = __i; __imag__ _M_value = __i;
} }
inline
complex<double>::complex(const complex<float>& __z)
: _M_value(_ComplexT(__z._M_value)) { }
inline
complex<double>::complex(const complex<long double>& __z)
{
__real__ _M_value = __z.real();
__imag__ _M_value = __z.imag();
}
inline complex<double>& inline complex<double>&
complex<double>::operator=(double __d) complex<double>::operator=(double __d)
{ {
...@@ -636,357 +759,198 @@ namespace std ...@@ -636,357 +759,198 @@ namespace std
__imag__ __t = __z.imag(); __imag__ __t = __z.imag();
_M_value /= __t; _M_value /= __t;
return *this; return *this;
} }
//
// Primary template class complex continued.
//
// 26.2.4
template<typename _Tp>
inline
complex<_Tp>::complex(const _Tp& __r, const _Tp& __i)
: _M_real(__r), _M_imag(__i) { }
template<typename _Tp>
template<typename _Up>
inline
complex<_Tp>::complex(const complex<_Up>& __z)
: _M_real(__z.real()), _M_imag(__z.imag()) { }
// 26.2.7/4
template<typename _Tp>
inline _Tp
norm(const complex<_Tp>& __z)
{
// XXX: Grammar school computation
return __z.real() * __z.real() + __z.imag() * __z.imag();
}
template<typename _Tp>
complex<_Tp>&
complex<_Tp>::operator=(const _Tp& __t)
{
_M_real = __t;
_M_imag = _Tp();
return *this;
}
// 26.2.5/1
template<typename _Tp>
inline complex<_Tp>&
complex<_Tp>::operator+=(const _Tp& __t)
{
_M_real += __t;
return *this;
}
// 26.2.5/3
template<typename _Tp>
inline complex<_Tp>&
complex<_Tp>::operator-=(const _Tp& __t)
{
_M_real -= __t;
return *this;
}
// 26.2.5/5
template<typename _Tp>
complex<_Tp>&
complex<_Tp>::operator*=(const _Tp& __t)
{
_M_real *= __t;
_M_imag *= __t;
return *this;
}
// 26.2.5/7
template<typename _Tp>
complex<_Tp>&
complex<_Tp>::operator/=(const _Tp& __t)
{
_M_real /= __t;
_M_imag /= __t;
return *this;
}
template<typename _Tp>
template<typename _Up>
complex<_Tp>&
complex<_Tp>::operator=(const complex<_Up>& __z)
{
_M_real = __z.real();
_M_imag = __z.imag();
return *this;
}
// 26.2.5/9
template<typename _Tp>
template<typename _Up>
complex<_Tp>&
complex<_Tp>::operator+=(const complex<_Up>& __z)
{
_M_real += __z.real();
_M_imag += __z.imag();
return *this;
}
// 26.2.5/11
template<typename _Tp>
template<typename _Up>
complex<_Tp>&
complex<_Tp>::operator-=(const complex<_Up>& __z)
{
_M_real -= __z.real();
_M_imag -= __z.imag();
return *this;
}
// 26.2.5/13
// XXX: this is a grammar school implementation.
template<typename _Tp>
template<typename _Up>
complex<_Tp>&
complex<_Tp>::operator*=(const complex<_Up>& __z)
{
const _Tp __r = _M_real * __z.real() - _M_imag * __z.imag();
_M_imag = _M_real * __z.imag() + _M_imag * __z.real();
_M_real = __r;
return *this;
}
// 26.2.5/15
// XXX: this is a grammar school implementation.
template<typename _Tp>
template<typename _Up>
complex<_Tp>&
complex<_Tp>::operator/=(const complex<_Up>& __z)
{
const _Tp __r = _M_real * __z.real() + _M_imag * __z.imag();
const _Tp __n = norm(__z);
_M_imag = (_M_real * __z.imag() - _M_imag * __z.real()) / __n;
_M_real = __r / __n;
return *this;
}
// Operators:
template<typename _Tp>
inline complex<_Tp>
operator+(const complex<_Tp>& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__x) += __y; }
template<typename _Tp>
inline complex<_Tp>
operator+(const complex<_Tp>& __x, const _Tp& __y)
{ return complex<_Tp> (__x) += __y; }
template<typename _Tp>
inline complex<_Tp>
operator+(const _Tp& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__y) += __x; }
template<typename _Tp>
inline complex<_Tp>
operator-(const complex<_Tp>& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__x) -= __y; }
template<typename _Tp>
inline complex<_Tp>
operator-(const complex<_Tp>& __x, const _Tp& __y)
{ return complex<_Tp> (__x) -= __y; }
template<typename _Tp>
inline complex<_Tp>
operator-(const _Tp& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__x) -= __y; }
template<typename _Tp>
inline complex<_Tp>
operator*(const complex<_Tp>& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__x) *= __y; }
template<typename _Tp>
inline complex<_Tp>
operator*(const complex<_Tp>& __x, const _Tp& __y)
{ return complex<_Tp> (__x) *= __y; }
template<typename _Tp>
inline complex<_Tp>
operator*(const _Tp& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__y) *= __x; }
template<typename _Tp>
inline complex<_Tp>
operator/(const complex<_Tp>& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__x) /= __y; }
template<typename _Tp>
inline complex<_Tp>
operator/(const complex<_Tp>& __x, const _Tp& __y)
{ return complex<_Tp> (__x) /= __y; }
template<typename _Tp>
inline complex<_Tp>
operator/(const _Tp& __x, const complex<_Tp>& __y)
{ return complex<_Tp> (__x) /= __y; }
template<typename _Tp>
inline complex<_Tp>
operator+(const complex<_Tp>& __x)
{ return __x; }
template<typename _Tp> // 26.2.3 complex specializations
inline complex<_Tp> // complex<long double> specialization
operator-(const complex<_Tp>& __x) template<> class complex<long double>
{ return complex<_Tp>(-__x.real(), -__x.imag()); } {
public:
typedef long double value_type;
template<typename _Tp> complex(long double = 0.0L, long double = 0.0L);
inline bool #ifdef _GLIBCPP_BUGGY_COMPLEX
operator==(const complex<_Tp>& __x, const complex<_Tp>& __y) complex(const complex& __z) : _M_value(__z._M_value) { }
{ return __x.real() == __y.real() && __x.imag() == __y.imag(); } #endif
explicit complex(const complex<float>&);
explicit complex(const complex<double>&);
template<typename _Tp> long double real() const;
inline bool long double imag() const;
operator==(const complex<_Tp>& __x, const _Tp& __y)
{ return __x.real() == __y && __x.imag() == _Tp(); }
template<typename _Tp> complex<long double>& operator= (long double);
inline bool complex<long double>& operator+= (long double);
operator==(const _Tp& __x, const complex<_Tp>& __y) complex<long double>& operator-= (long double);
{ return __x == __y.real() && _Tp() == __y.imag(); } complex<long double>& operator*= (long double);
complex<long double>& operator/= (long double);
template<typename _Tp> // The compiler knows how to do this efficiently
inline bool // complex& operator= (const complex&);
operator!=(const complex<_Tp>& __x, const complex<_Tp>& __y) template<typename _Tp>
{ return __x.real() != __y.real() || __x.imag() != __y.imag(); } complex<long double>& operator=(const complex<_Tp>&);
template<typename _Tp>
complex<long double>& operator+=(const complex<_Tp>&);
template<typename _Tp>
complex<long double>& operator-=(const complex<_Tp>&);
template<typename _Tp>
complex<long double>& operator*=(const complex<_Tp>&);
template<typename _Tp>
complex<long double>& operator/=(const complex<_Tp>&);
template<typename _Tp> private:
inline bool typedef __complex__ long double _ComplexT;
operator!=(const complex<_Tp>& __x, const _Tp& __y) _ComplexT _M_value;
{ return __x.real() != __y || __x.imag() != _Tp(); }
template<typename _Tp> complex(_ComplexT __z) : _M_value(__z) { }
inline bool
operator!=(const _Tp& __x, const complex<_Tp>& __y)
{ return __x != __y.real() || _Tp() != __y.imag(); }
template<typename _Tp, typename _CharT, class _Traits> friend class complex<float>;
basic_istream<_CharT, _Traits>& friend class complex<double>;
operator>>(basic_istream<_CharT, _Traits>&, complex<_Tp>&);
template<typename _Tp, typename _CharT, class _Traits> friend complex<long double> pow<>(const complex<long double>&, int);
basic_ostream<_CharT, _Traits>& friend complex<long double> pow<>(const complex<long double>&,
operator<<(basic_ostream<_CharT, _Traits>&, const complex<_Tp>&); const long double&);
friend complex<long double> pow<>(const complex<long double>&,
const complex<long double>&);
friend complex<long double> pow<>(const long double&,
const complex<long double>&);
friend complex<long double> sqrt<>(const complex<long double>&);
friend complex<long double> tan<>(const complex<long double>&);
friend complex<long double> tanh<>(const complex<long double>&);
};
inline
complex<long double>::complex(long double __r, long double __i)
{
__real__ _M_value = __r;
__imag__ _M_value = __i;
}
// Values: inline long double
template <typename _Tp> complex<long double>::real() const
inline _Tp { return __real__ _M_value; }
real(const complex<_Tp>& __z)
{ return __z.real(); }
template <typename _Tp>
inline _Tp
imag(const complex<_Tp>& __z)
{ return __z.imag(); }
template<typename _Tp> inline long double
inline _Tp complex<long double>::imag() const
abs(const complex<_Tp>& __z) { return __imag__ _M_value; }
{
_Tp __x = __z.real();
_Tp __y = __z.imag();
const _Tp __s = abs(__x) + abs(__y);
if (__s == _Tp()) // well ...
return __s;
__x /= __s; __y /= __s;
return __s * sqrt(__x * __x + __y * __y);
}
template<typename _Tp> inline complex<long double>&
inline _Tp complex<long double>::operator=(long double __r)
arg(const complex<_Tp>& __z) {
{ return atan2(__z.imag(), __z.real()); } __real__ _M_value = __r;
__imag__ _M_value = 0.0L;
return *this;
}
inline complex<long double>&
complex<long double>::operator+=(long double __r)
{
__real__ _M_value += __r;
return *this;
}
inline complex<long double>&
complex<long double>::operator-=(long double __r)
{
__real__ _M_value -= __r;
return *this;
}
template<typename _Tp> inline complex<long double>&
inline complex<_Tp> complex<long double>::operator*=(long double __r)
polar(const _Tp& __rho, const _Tp& __theta) {
{ return complex<_Tp>(__rho * cos(__theta), __rho * sin(__theta)); } __real__ _M_value *= __r;
return *this;
}
template<typename _Tp> inline complex<long double>&
inline complex<_Tp> complex<long double>::operator/=(long double __r)
conj(const complex<_Tp>& __z) {
{ return complex<_Tp>(__z.real(), -__z.imag()); } __real__ _M_value /= __r;
return *this;
// // We use here a few more specializations. }
// template<>
// inline complex<float>
// conj(const complex<float> &__x)
// #ifdef _GLIBCPP_BUGGY_FLOAT_COMPLEX
// {
// complex<float> __tmpf(~__x._M_value);
// return __tmpf;
// }
// #else
// { return complex<float>(~__x._M_value); }
// #endif
// template<>
// inline complex<double>
// conj(const complex<double> &__x)
// { return complex<double> (~__x._M_value); }
// Transcendentals:
template<typename _Tp> template<typename _Tp>
inline complex<_Tp> inline complex<long double>&
cos(const complex<_Tp>& __z) complex<long double>::operator=(const complex<_Tp>& __z)
{ {
const _Tp __x = __z.real(); __real__ _M_value = __z.real();
const _Tp __y = __z.imag(); __imag__ _M_value = __z.imag();
return complex<_Tp>(cos(__x) * cosh(__y), -sin(__x) * sinh(__y)); return *this;
} }
template<typename _Tp> template<typename _Tp>
inline complex<_Tp> inline complex<long double>&
cosh(const complex<_Tp>& __z) complex<long double>::operator+=(const complex<_Tp>& __z)
{ {
const _Tp __x = __z.real(); __real__ _M_value += __z.real();
const _Tp __y = __z.imag(); __imag__ _M_value += __z.imag();
return complex<_Tp>(cosh(__x) * cos(__y), sinh(__x) * sin(__y)); return *this;
} }
template<typename _Tp> template<typename _Tp>
inline complex<_Tp> inline complex<long double>&
exp(const complex<_Tp>& __z) complex<long double>::operator-=(const complex<_Tp>& __z)
{ return polar(exp(__z.real()), __z.imag()); } {
__real__ _M_value -= __z.real();
template<typename _Tp> __imag__ _M_value -= __z.imag();
inline complex<_Tp> return *this;
log(const complex<_Tp>& __z) }
{ return complex<_Tp>(log(abs(__z)), arg(__z)); }
template<typename _Tp>
inline complex<_Tp>
log10(const complex<_Tp>& __z)
{ return log(__z) / log(_Tp(10.0)); }
template<typename _Tp> template<typename _Tp>
inline complex<_Tp> inline complex<long double>&
sin(const complex<_Tp>& __z) complex<long double>::operator*=(const complex<_Tp>& __z)
{ {
const _Tp __x = __z.real(); _ComplexT __t;
const _Tp __y = __z.imag(); __real__ __t = __z.real();
return complex<_Tp>(sin(__x) * cosh(__y), cos(__x) * sinh(__y)); __imag__ __t = __z.imag();
_M_value *= __t;
return *this;
} }
template<typename _Tp> template<typename _Tp>
inline complex<_Tp> inline complex<long double>&
sinh(const complex<_Tp>& __z) complex<long double>::operator/=(const complex<_Tp>& __z)
{ {
const _Tp __x = __z.real(); _ComplexT __t;
const _Tp __y = __z.imag(); __real__ __t = __z.real();
return complex<_Tp>(sinh(__x) * cos(__y), cosh(__x) * sin(__y)); __imag__ __t = __z.imag();
_M_value /= __t;
return *this;
} }
// These bits have to be at the end of this file, so that the
// specializations have all been defined.
inline
complex<float>::complex(const complex<double>& __z)
: _M_value(_ComplexT(__z._M_value)) { }
inline
complex<float>::complex(const complex<long double>& __z)
: _M_value(_ComplexT(__z._M_value)) { }
inline
complex<double>::complex(const complex<float>& __z)
: _M_value(_ComplexT(__z._M_value)) { }
inline
complex<double>::complex(const complex<long double>& __z)
{
__real__ _M_value = __z.real();
__imag__ _M_value = __z.imag();
}
inline
complex<long double>::complex(const complex<float>& __z)
: _M_value(_ComplexT(__z._M_value)) { }
inline
complex<long double>::complex(const complex<double>& __z)
: _M_value(_ComplexT(__z._M_value)) { }
} // namespace std } // namespace std
#endif /* _CPP_COMPLEX */ #endif /* _CPP_COMPLEX */
...@@ -296,7 +296,7 @@ namespace std ...@@ -296,7 +296,7 @@ namespace std
abs(double __x) { return __builtin_fabs(__x); } abs(double __x) { return __builtin_fabs(__x); }
#else #else
inline double inline double
abs(double __x) { return fabs (__x); } abs(double __x) { return fabs(__x); }
#endif #endif
extern "C" double floor(double __x); extern "C" double floor(double __x);
......
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
// invalidate any other reasons why the executable file might be covered by // invalidate any other reasons why the executable file might be covered by
// the GNU General Public License. // the GNU General Public License.
#include <bits/std_cmath.h>
#include <bits/std_complex.h> #include <bits/std_complex.h>
// This is a ISO C 9X header. // This is a ISO C 9X header.
...@@ -45,62 +44,6 @@ ...@@ -45,62 +44,6 @@
namespace std namespace std
{ {
// template<>
// FLT
// abs(const complex<FLT>& __x)
// {
// // We don't use cabs here because some systems (IRIX 6.5, for
// // example) define their own incompatible version.
// return hypot (__real__ __x._M_value, __imag__ __x._M_value);
// }
// template<>
// FLT
// arg(const complex<FLT>& __x)
// { return carg(__x._M_value); }
// template<>
// complex<FLT>
// polar(const FLT& __rho, const FLT& __theta)
// {
// #if 0
// // XXX
// // defined(_GLIBCPP_HAVE_SINCOS) && !defined(__osf__)
// // Although sincos does exist on OSF3.2 and OSF4.0 we cannot use it
// // since the necessary types are not defined in the headers.
// FLT __sinx, __cosx;
// sincos(__theta, &__sinx, &__cosx);
// return complex<FLT>(__rho * __cosx, __rho * __sinx);
// #else
// return complex<FLT>(__rho * cos(__theta), __rho * sin(__theta));
// #endif
// }
// template<>
// complex<FLT>
// cos(const complex<FLT>& __x)
// { return complex<FLT>(ccos(__x._M_value)); }
// template<>
// complex<FLT>
// cosh(const complex<FLT>& __x)
// { return complex<FLT>(ccosh(__x._M_value)); }
// template<>
// complex<FLT>
// exp(const complex<FLT>& __x)
// { return complex<FLT>(cexp(__x._M_value)); }
// template<>
// complex<FLT>
// log(const complex<FLT>& __x)
// { return complex<FLT>(c_log(__x._M_value)); }
// template<>
// complex<FLT>
// log10(const complex<FLT>& __x)
// { return complex<FLT>(clog10(__x._M_value)); }
template<> template<>
complex<FLT> complex<FLT>
pow(const complex<FLT>& __x, int __n) pow(const complex<FLT>& __x, int __n)
...@@ -121,16 +64,6 @@ namespace std ...@@ -121,16 +64,6 @@ namespace std
pow(const FLT& __x, const complex<FLT>& __y) pow(const FLT& __x, const complex<FLT>& __y)
{ return complex<FLT>(cexp(__y._M_value * log(__x))); } { return complex<FLT>(cexp(__y._M_value * log(__x))); }
// template<>
// complex<FLT>
// sin(const complex<FLT>& __x)
// { return complex<FLT>(csin(__x._M_value)); }
// template<>
// complex<FLT>
// sinh(const complex<FLT>& __x)
// { return complex<FLT>(csinh(__x._M_value)); }
template<> template<>
complex<FLT> complex<FLT>
sqrt(const complex<FLT>& __x) sqrt(const complex<FLT>& __x)
......
// 1999-06-29 // 1999-06-29
// bkoz // bkoz
// Copyright (C) 1999 Free Software Foundation, Inc. // Copyright (C) 1999, 2000 Free Software Foundation, Inc.
// //
// This file is part of the GNU ISO C++ Library. This library is free // This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the // software; you can redistribute it and/or modify it under the
...@@ -29,7 +29,7 @@ template<typename T> ...@@ -29,7 +29,7 @@ template<typename T>
struct B { }; struct B { };
bool test01() void test01()
{ {
// 1 // 1
...@@ -43,18 +43,25 @@ bool test01() ...@@ -43,18 +43,25 @@ bool test01()
#ifdef DEBUG_ASSERT #ifdef DEBUG_ASSERT
assert(test); assert(test);
#endif #endif
return test;
} }
// 2 // 2
template class std::vector<double>; template class std::vector<double>;
template class std::vector< A<B> >; template class std::vector< A<B> >;
// libstdc++/102
void test02
{
std::vector<int> v1;
std::vector<int> v2 (v1);
}
int main() int main()
{ {
test01(); test01();
test02();
return 0; return 0;
} }
......
// 2000-11-20
// Benjamin Kosnik bkoz@redhat.com
// Copyright (C) 2000 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; 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, 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 General Public License for more details.
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING. If not, write to the Free
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
// USA.
#include <complex>
#include <debug_assert.h>
void test01()
{
using namespace std;
bool test = true;
typedef complex<double> complex_type;
const double cd1 = -11.451;
const double cd2 = -442.1533;
complex_type a(cd1, cd2);
double d;
d = a.real();
VERIFY( d == cd1);
d = a.imag();
VERIFY(d == cd2);
complex_type c(cd1, cd2);
double d6 = abs(c);
VERIFY( d6 >= 0);
double d7 = arg(c);
double d8 = atan2(c.imag(), c.real());
VERIFY( d7 == d8);
double d9 = norm(c);
double d10 = d6 * d6;
VERIFY(d9 - d10 == 0);
complex_type e = conj(c);
complex_type f = polar(c.imag(), 0.0);
VERIFY(f.real() != 0);
}
int main()
{
test01();
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment