Improve efficiency of is_smax and is_smin #19
Labels
A-bitvec
Task operating on the stevia_bitvec crate in isolation.
B-performance
A task to improve performance (regression) of some part of the code base.
D-easy
A task that is considered to be simple to implement.
The current implementation of
Bitvec::is_smax
andBitvec::is_smin
is suboptimal because there is no native implementation for it inapint
and we have to emulate the logic for it instevia_bitvec
. To improve this we could try implementing these (or similar) checks inapint
since they might be reasonable to add there because of the already existing constructorsunsigned_max_value
etc.The text was updated successfully, but these errors were encountered: