67 lines
1.9 KiB
C++
Raw Normal View History

2010-05-11 19:42:16 +00:00
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
2010-05-11 19:42:16 +00:00
//
2010-11-16 22:09:02 +00:00
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
2010-05-11 19:42:16 +00:00
//
//===----------------------------------------------------------------------===//
// <valarray>
// template<class T> class valarray;
// valarray operator-() const;
#include <valarray>
#include <cassert>
#include <cstddef>
2010-05-11 19:42:16 +00:00
int main()
{
{
typedef int T;
T a[] = {1, 2, 3, 4, 5};
const unsigned N = sizeof(a)/sizeof(a[0]);
std::valarray<T> v(a, N);
std::valarray<T> v2 = -v;
assert(v2.size() == v.size());
for (std::size_t i = 0; i < v2.size(); ++i)
2010-05-11 19:42:16 +00:00
assert(v2[i] == -v[i]);
}
{
typedef double T;
T a[] = {1, 2.5, 3, 4.25, 5};
const unsigned N = sizeof(a)/sizeof(a[0]);
std::valarray<T> v(a, N);
std::valarray<T> v2 = -v;
assert(v2.size() == v.size());
for (std::size_t i = 0; i < v2.size(); ++i)
2010-05-11 19:42:16 +00:00
assert(v2[i] == -v[i]);
}
{
typedef std::valarray<double> T;
T a[] = {T(1), T(2), T(3), T(4), T(5)};
const unsigned N = sizeof(a)/sizeof(a[0]);
std::valarray<T> v(a, N);
std::valarray<T> v2 = -v;
assert(v2.size() == v.size());
for (unsigned i = 0; i < N; ++i)
2010-05-11 19:42:16 +00:00
{
assert(v2[i].size() == v[i].size());
for (std::size_t j = 0; j < v[i].size(); ++j)
2010-05-11 19:42:16 +00:00
assert(v2[i][j] == -v[i][j]);
}
}
{
typedef double T;
T a[] = {1, 2.5, 3, 4.25, 5};
const unsigned N = sizeof(a)/sizeof(a[0]);
std::valarray<T> v(a, N);
std::valarray<T> v2 = -(v + v);
assert(v2.size() == v.size());
for (std::size_t i = 0; i < v2.size(); ++i)
2010-05-11 19:42:16 +00:00
assert(v2[i] == -2*v[i]);
}
}