mirror of
https://github.com/boostorg/multi_array.git
synced 2025-05-10 07:23:52 +00:00
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
//
|
|
// access.cpp - operator[] and operator() tests with various arrays
|
|
// The tests assume that they are working on an Array of shape 2x3x4
|
|
//
|
|
|
|
#include "generative_tests.hpp"
|
|
|
|
template <typename Array>
|
|
void access(Array& A, const mutable_array_tag&) {
|
|
assign(A);
|
|
access(A,const_array_tag());
|
|
|
|
const Array& CA = A;
|
|
access(CA,const_array_tag());
|
|
}
|
|
|
|
template <typename Array>
|
|
void access(Array& A, const const_array_tag&) {
|
|
const int ndims = 3;
|
|
|
|
typedef typename Array::index index;
|
|
const index idx0 = A.index_bases()[0];
|
|
const index idx1 = A.index_bases()[1];
|
|
const index idx2 = A.index_bases()[2];
|
|
|
|
// operator[]
|
|
int cnum = 0;
|
|
const Array& CA = A;
|
|
for (index i = idx0; i != idx0+2; ++i)
|
|
for (index j = idx1; j != idx1+3; ++j)
|
|
for (index k = idx2; k != idx2+4; ++k) {
|
|
BOOST_TEST(A[i][j][k] == cnum++);
|
|
BOOST_TEST(CA[i][j][k] == A[i][j][k]);
|
|
}
|
|
|
|
// operator()
|
|
for (index i2 = 0; i2 != 2; ++i2)
|
|
for (index j2 = 0; j2 != 3; ++j2)
|
|
for (index k2 = 0; k2 != 4; ++k2) {
|
|
boost::array<index,ndims> indices;
|
|
indices[0] = i2; indices[1] = j2; indices[2] = k2;
|
|
BOOST_TEST(A(indices) == A[i2][j2][k2]);
|
|
BOOST_TEST(CA(indices) == A(indices));
|
|
}
|
|
++tests_run;
|
|
}
|
|
|
|
int test_main(int,char*[]) {
|
|
return run_generative_tests();
|
|
}
|