From 9854067ca77e5705311cd0d362980bc3f7c6d4c4 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 18 Feb 2025 22:17:43 -0500 Subject: [PATCH] bitboard: clarify benchmark stats --- src/bitboard.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitboard.rs b/src/bitboard.rs index b2b5083..cbac136 100644 --- a/src/bitboard.rs +++ b/src/bitboard.rs @@ -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")]