aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_hilbert.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-04-23 20:55:47 +0200
committerDavid Robillard <d@drobilla.net>2019-04-23 20:55:47 +0200
commit66f8ba7f06b9369276e6210f756b075591efa6fa (patch)
tree6c9601a60226a8e38dd1c227b10fb0e2f06e8d4b /test/test_hilbert.cpp
parent045128813d1a69a6483ff2f8f870562b96be0a65 (diff)
downloadchilbert-66f8ba7f06b9369276e6210f756b075591efa6fa.tar.gz
chilbert-66f8ba7f06b9369276e6210f756b075591efa6fa.tar.bz2
chilbert-66f8ba7f06b9369276e6210f756b075591efa6fa.zip
Support using any array-like type for points
Diffstat (limited to 'test/test_hilbert.cpp')
-rw-r--r--test/test_hilbert.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/test_hilbert.cpp b/test/test_hilbert.cpp
index 1d32668..5d1f52a 100644
--- a/test/test_hilbert.cpp
+++ b/test/test_hilbert.cpp
@@ -92,12 +92,12 @@ test_standard(Context& ctx)
H ha = make_zero_bitvec<H, D * M>();
assert(ha.size() >= D * M);
- chilbert::coords_to_index(pa.data(), M, D, ha);
+ chilbert::coords_to_index(pa, M, D, ha);
{
// Ensure unmapping results in the original point
auto pa_out = make_random_point<M, D>(ctx);
- chilbert::index_to_coords(pa_out.data(), M, D, ha);
+ chilbert::index_to_coords(pa_out, M, D, ha);
assert(pa_out == pa);
}
@@ -110,7 +110,7 @@ test_standard(Context& ctx)
// Unmap next hilbert index to a point
auto pb = make_random_point<M, D>(ctx);
- chilbert::index_to_coords(pb.data(), M, D, hb);
+ chilbert::index_to_coords(pb, M, D, hb);
// Ensure next point is 1 unit of distance away from first
assert(squared_distance(pa, pb) == 1);
@@ -128,12 +128,12 @@ test_compact(Context& ctx)
T ha = make_zero_bitvec<T, D * M>();
assert(ha.size() >= D * M);
- chilbert::coords_to_compact_index(pa.data(), ms.data(), D, ha);
+ chilbert::coords_to_compact_index(pa, ms.data(), D, ha);
{
// Ensure unmapping results in the original point
auto pa_out = make_random_point<M, D>(ctx);
- chilbert::compact_index_to_coords(pa_out.data(), ms.data(), D, ha);
+ chilbert::compact_index_to_coords(pa_out, ms.data(), D, ha);
assert(pa_out == pa);
}
@@ -146,7 +146,7 @@ test_compact(Context& ctx)
// Unmap next hilbert index to a point
auto pb = make_random_point<M, D>(ctx);
- chilbert::compact_index_to_coords(pb.data(), ms.data(), D, hb);
+ chilbert::compact_index_to_coords(pb, ms.data(), D, hb);
// Ensure next point is 1 unit of distance away from first
assert(squared_distance(pa, pb) == 1);