Skip to content

Commit

Permalink
Clean a paren pair
Browse files Browse the repository at this point in the history
  • Loading branch information
vfukala committed Aug 10, 2024
1 parent f8e4b66 commit bac5f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LiveVerif/src/LiveVerifExamples/critbit.v
Original file line number Diff line number Diff line change
Expand Up @@ -2751,7 +2751,7 @@ Derive critical_bit SuchThat (fun_correct! critical_bit) As critical_bit_ok.
move i at bottom. .**/
while (i < 8 * sizeof(uintptr_t) - 1
&& ((k1 >> (8 * sizeof(uintptr_t) - 1 - i) & 1)
== ((k2 >> (8 * sizeof(uintptr_t) - 1 - i) & 1))))
== (k2 >> (8 * sizeof(uintptr_t) - 1 - i) & 1)))
/* decreases (ltac:(bw) - \[i]) */ { /**. .**/
i = i + 1; /**. .**/
} /**.
Expand Down

0 comments on commit bac5f89

Please sign in to comment.