default:
@just --list
check:
cargo fmt --all -- --check
cargo clippy --all-targets -- -D warnings
cargo test
test:
cargo test
fmt:
cargo fmt --all
# Generate a single-file HTML sweep report for Sinkhorn variants.
#
# Output:
# - default: `target/sinkhorn_sweep.html` (gitignored)
#
# Example:
# just sweep --trials 80 --n 64 --reg-final 0.01 --sparsity 0.4
sweep *ARGS:
cargo run --example sinkhorn_sweep -- {{ ARGS }}
bench:
cargo bench