Skip to content

Commit 389112d

Browse files
style: rustfmt import ordering after jackal -> voltic rename
The rename commit reordered use-statements without re-running rustfmt, which failed cargo fmt --check in CI (the first gate) and masked clippy/test/bench. Formatting only; no functional change.
1 parent cdd291f commit 389112d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

bench/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ mod naive;
2424
#[path = "phi.rs"]
2525
mod phi;
2626

27-
use voltic::OptionKind;
2827
use std::time::Instant;
28+
use voltic::OptionKind;
2929

3030
const REPEATS: usize = 7;
3131

bench/phi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
//! arbitrary-precision Φ). "Max abs error" is the worst |Φ̂(x) − Φ_ref(x)| over
1111
//! those points — a fixed, reproducible measure, not a moving target.
1212
13-
use voltic::norm;
1413
use std::simd::prelude::*;
1514
use std::time::Instant;
15+
use voltic::norm;
1616

1717
/// (x, Φ(x)) — Φ correct to f64 precision (offline arbitrary-precision eval).
1818
#[rustfmt::skip]

tests/properties.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
//! below checks voltic against it. The round-trip and parity proptests need no
1010
//! Python and run on every `cargo test`.
1111
12-
use voltic::{bs_price, implied_vol, OptionKind};
1312
use proptest::prelude::*;
13+
use voltic::{bs_price, implied_vol, OptionKind};
1414

1515
/// A strategy producing a *well-conditioned* option: parameters in plausible
1616
/// ranges, then **filtered** to those whose Black-Scholes premium is

0 commit comments

Comments
 (0)