We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e52e12 commit 1402d50Copy full SHA for 1402d50
1 file changed
library/core/src/num/dec2flt/decimal_seq.rs
@@ -190,7 +190,6 @@ impl DecimalSeq {
190
} else if n == 0 {
191
return;
192
} else {
193
- kani::assume(read_index == self.num_digits);
194
#[kani::loop_invariant(n > 0 && read_index <= self.num_digits + 64 - n.leading_zeros() as usize && read_index > 0)]
195
while (n >> shift) == 0 {
196
n *= 10;
0 commit comments