Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit cb84bbe

Browse files
committed
fixup! BRANCH TBD enable exhaustive tests for scalbn and ldexp
1 parent c4eca7d commit cb84bbe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/libm-test/src/gen/extensive.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ macro_rules! impl_extensive_input {
124124
let start = <$fty>::NEG_INFINITY;
125125
let end = <$fty>::INFINITY;
126126

127-
let (iter0, steps0) = logspace_steps::<Op>(start, end, ctx, 1);
128-
let iter1 = int_range(ctx, GeneratorKind::Extensive, 0);
129-
let steps1 = iteration_count(ctx, GeneratorKind::Extensive, 0);
127+
let (iter0, steps0) = logspace_steps::<Op>(start, end, ctx, 0);
128+
let iter1 = int_range(ctx, GeneratorKind::Extensive, 1);
129+
let steps1 = iteration_count(ctx, GeneratorKind::Extensive, 1);
130130

131131
let iter =
132132
iter0.flat_map(move |first| iter1.clone().map(move |second| (first, second)));

0 commit comments

Comments
 (0)