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
|
#include <iostream>
#include "support/sparse_square_matrix.h"
int main() {
sparse_square_matrix<uint32_t> m;
// New matrix should initialize to 0x0 size.
assert(m.width() == 0);
// Recreating should resize the matrix.
m.recreate(100);
assert(m.width() == 100);
// Small matrices should use dense storage.
assert(m.usingDenseStorage());
// Setting and getting element values in dense storage should work.
for (int y = 0; y < 100; ++y)
for (int x = 0; x < 100; ++x)
m.set(y, x, y * 100 + x);
for (int y = 0; y < 100; ++y)
for (int x = 0; x < 100; ++x)
assert(m.get(y, x) == y * 100 + x);
// Recreating should clear the matrix elements to zero,
// even if recreating to same size as before.
assert(m.width() == 100);
m.recreate(100);
for (int y = 0; y < 100; ++y)
for (int x = 0; x < 100; ++x)
assert(m.get(y, x) == 0);
// Large matrices should use sparse storage.
m.recreate(m.DenseLimit);
assert(!m.usingDenseStorage());
// Setting and getting element values in sparse storage should work.
for (int y = 0; y < m.DenseLimit; y += 128)
for (int x = 0; x < m.DenseLimit; x += 128)
m.set(y, x, y * m.DenseLimit + x);
for (int y = 0; y < m.DenseLimit; y += 128)
for (int x = 0; x < m.DenseLimit; x += 128)
assert(m.get(y, x) == y * m.DenseLimit + x);
// Recreating matrix in sparse mode should reset values in sparse
// storage to zero.
m.recreate(m.DenseLimit + 1);
for (int y = 0; y < m.width(); y += 128)
for (int x = 0; x < m.width(); x += 128)
assert(m.get(y, x) == 0);
std::cout << "ok.\n";
}
|