-
-
Notifications
You must be signed in to change notification settings - Fork 351
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename libafl_bolts::rands::Rand::zero_upto
to below_or_zero
.
#2911
Conversation
i think the correct thing to do is to fix the doc, by changing it to [0, n) |
i put this function because it is a better alternative than the |
I was thinking of the same thing as well, but wouldn't it mean that we should also change the function's name? I'm far from being a native english speaker, but I think that in math, What do you think? |
you can change it to zero_upto_excl() or anything if you have better idea of names. |
i'm fixing ci. and merge to your branch later |
Hi LibAFL! I was playing with the [`Rand`] trait when I realized that the documentation of [`Rand::zero_upto`] did not match what I was expected: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L139-L142 When using the following RNGs, [`Rand::zero_upto`] never returns the upper bound `n` as it would have been expected according to the documentation: - `RomuDuoJrRand` - `RomuTrioRand` - `Sfc64Rand` - `XkcdRand` - `XorShift64Rand` - `Xoshiro256PlusPlusRand` The default implementation of [`Rand::zero_upto`] is to use [`fast_bound_usize`], which excludes the given upper bound, thus I believe here that the default implementation of [`Rand::zero_upto`] is wrong. As discussed here: AFLplusplus#2911 (comment), we believe that renaming the method would be better than changing the actual implementation. [`Rand`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L108 [`Rand::zero_upto`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L139-L142 [`fast_bound_usize`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L100-L103
libafl_bolts::rands::Rand::zero_upto
.libafl_bolts::rands::Rand::zero_upto
to zero_upto_excl
.
Sounds good to me. I've renamed it and I've reverted my changes in the default implementation. Thank you for your feedback! |
Wait, this gets super confusing. |
good for me |
Hi LibAFL! I was playing with the [`Rand`] trait when I realized that the documentation of [`Rand::zero_upto`] did not match what I was expected: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L139-L142 When using the following RNGs, [`Rand::zero_upto`] never returns the upper bound `n` as it would have been expected according to the documentation: - `RomuDuoJrRand` - `RomuTrioRand` - `Sfc64Rand` - `XkcdRand` - `XorShift64Rand` - `Xoshiro256PlusPlusRand` The default implementation of [`Rand::zero_upto`] is to use [`fast_bound_usize`], which excludes the given upper bound, thus I believe here that the default implementation of [`Rand::zero_upto`] is wrong. As discussed here: AFLplusplus#2911 (comment), we believe that renaming the method would be better than changing the actual implementation. [`Rand`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L108 [`Rand::zero_upto`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L139-L142 [`fast_bound_usize`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L100-L103
libafl_bolts::rands::Rand::zero_upto
to zero_upto_excl
.libafl_bolts::rands::Rand::zero_upto
to below_or_zero
.
sounds good to me as well. Fixed in 3b31a18 |
Hi LibAFL!
I was playing with the
Rand
trait when I realized that thedocumentation of
Rand::zero_upto
did not match what I was expected:LibAFL/libafl_bolts/src/rands/mod.rs
Lines 139 to 142 in fd6271f
When using the following RNGs,
Rand::zero_upto
never returns the upper boundn
as it would have been expected according to the documentation:RomuDuoJrRand
RomuTrioRand
Sfc64Rand
XkcdRand
XorShift64Rand
Xoshiro256PlusPlusRand
The default implementation of
Rand::zero_upto
is to usefast_bound_usize
,which excludes the given upper bound, thus I believe here that the default implementation
of
Rand::zero_upto
is wrong.As discussed here: #2911 (comment),
we believe that renaming the method would be better than changing the actual
implementation.