Skip to content

Commit fb925de

Browse files
committed
fix(pillar/koestenberger): import Spd3 via linalg (consistent with pillar deps)
The leftover diff from the earlier B3 import-path patch wasn't committed before the Cargo.toml splat3d-feature fix. Now that pillar = [linalg, splat3d] both paths resolve to the same Spd3 type (linalg re-exports splat3d::Spd3 when splat3d feature is on), so the linalg path is the canonical one.
1 parent 29b10e7 commit fb925de

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/hpc/pillar/koestenberger.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
3232
use crate::hpc::linalg::eig_sym::eig_sym_3;
3333
use crate::hpc::pillar::prove_runner::{PillarReport, SplitMix64, random_contractive_spd3};
34-
use crate::hpc::splat3d::spd3::{sandwich, Spd3};
34+
use crate::hpc::linalg::Spd3;
35+
use crate::hpc::splat3d::spd3::sandwich;
3536

3637
// ── Probe constants ────────────────────────────────────────────────────────────
3738

0 commit comments

Comments
 (0)