File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -580,12 +580,12 @@ TEST_CASE("domain_tile_offset 3d", "[arithmetic]") {
580580 using Dom64 = Dim64::domain_type;
581581
582582 SECTION (" Rectangular prism examples" ) {
583- const uint64_t d1_lower_bound = 0 ; // GENERATE(0, 3);
584- const uint64_t d1_extent = 1 ; // GENERATE(1, 4);
585- const uint64_t d2_lower_bound = 0 ; // GENERATE(0, 3);
586- const uint64_t d2_extent = 1 ; // GENERATE(1, 4);
587- const uint64_t d3_lower_bound = 0 ; // GENERATE(0, 3);
588- const uint64_t d3_extent = 1 ; // GENERATE(1, 4);
583+ const uint64_t d1_lower_bound = GENERATE (0 , 3 );
584+ const uint64_t d1_extent = GENERATE (1 , 4 );
585+ const uint64_t d2_lower_bound = GENERATE (0 , 3 );
586+ const uint64_t d2_extent = GENERATE (1 , 4 );
587+ const uint64_t d3_lower_bound = GENERATE (0 , 3 );
588+ const uint64_t d3_extent = GENERATE (1 , 4 );
589589
590590 const Dim64 d1 (
591591 d1_lower_bound, d1_lower_bound + (3 * d1_extent) - 1 , d1_extent);
You can’t perform that action at this time.
0 commit comments