diff options
Diffstat (limited to 'src/algorithms')
-rw-r--r-- | src/algorithms/bits/Bits.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/algorithms/bits/Bits.java b/src/algorithms/bits/Bits.java index 5172254..d760afe 100644 --- a/src/algorithms/bits/Bits.java +++ b/src/algorithms/bits/Bits.java @@ -290,6 +290,9 @@ public class Bits /** * Calculate the number of set bits in an integer, optimised parallel version * + * Note tha this algorithm is optimised in the number of high-level operations + * and may be a bit slow than the non-optmised version. + * * @param value The integer * @return The number of set bits */ |