bitboard: clarify benchmark stats

This commit is contained in:
Simon Gardling 2025-02-18 22:17:43 -05:00
parent 5499628be0
commit 9854067ca7
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -4,7 +4,7 @@ use static_assertions::const_assert;
// quick explanation for the dual-nature of [`BitBoard`]
// There's both a `bitvec` impl (which is variable length)
// and a `native` impl which uses a u64 as the backing type
// the `native` impl is ~15% faster (in non-BitBoard specific benchmarks)
// the `native` impl is ~15-25% faster (in non-BitBoard specific benchmarks)
// `bitvec` is only really useful if you're using esoteric board sizes
#[cfg(feature = "bitvec")]