From 6c14afa2a8b0d076d83d9ba14ac920d248dc67c8 Mon Sep 17 00:00:00 2001 From: Joseph Schuchart Date: Tue, 17 Sep 2024 21:20:45 -0400 Subject: [PATCH] We don't have range() on the device Signed-off-by: Joseph Schuchart --- examples/madness/mra-device/mrattg-device.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/madness/mra-device/mrattg-device.cc b/examples/madness/mra-device/mrattg-device.cc index 30f5e18b0..1fe2e963c 100644 --- a/examples/madness/mra-device/mrattg-device.cc +++ b/examples/madness/mra-device/mrattg-device.cc @@ -407,7 +407,7 @@ void test(std::size_t K) { D.set_cube(-6.0,6.0); srand48(5551212); // for reproducible results - for (int i = 0; i < range(10000); ++i) drand48(); // warmup generator + for (int i = 0; i < 10000; ++i) drand48(); // warmup generator ttg::Edge, void> project_control; ttg::Edge, mra::FunctionReconstructedNode> project_result, reconstruct_result;