Recorded before the principal-engineer refactor began. Toolchain:
rustc 1.98.0 (stable, via rustup), workspace pinned stable in
rust-toolchain.toml, rust-version = "1.85" (MSRV claim).
cargo check --workspace --all-targets --all-features — pass (after build repair)cargo test --workspace --all-features — 151 tests pass
(139 unit + 12 integration; doc-tests 0)cargo clippy --workspace --all-targets --all-features -- -D warnings — pass (after repair)cargo fmt --all -- --check — passbasic_factorization (91) — pass, 1 CVP instancebatch_factorization — 5/6 pass; 1022117 (20-bit) fails:
insufficient smooth relations: needed 14, found 3
(confirms the 20-bit entry exceeds the documented 14-bit test scope)test_factorization — 18/18 passfirst 1000 primes: 11.4 ussampler: ~906 uschoose_multiple→sample rename, removed rand::RngCore re-export).parallel_sample in tensift-core was dead code that blocked compilation.question_mark violation in factor extraction.batch_factorization includes a 20-bit case beyond documented scope.