Skip to content

Commit

Permalink
Fix issue #789 (#807)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-appel authored Jan 15, 2025
1 parent 21f3ac5 commit ccb0df9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions floyd/functional_base.v
Original file line number Diff line number Diff line change
Expand Up @@ -732,8 +732,8 @@ Qed.

Lemma repr_inj_signed64:
forall i j,
Int64.min_signed <= i <= Int.max_signed ->
Int64.min_signed <= j <= Int.max_signed ->
Int64.min_signed <= i <= Int64.max_signed ->
Int64.min_signed <= j <= Int64.max_signed ->
Int64.repr i = Int64.repr j -> i=j.
Proof.
intros.
Expand Down

0 comments on commit ccb0df9

Please sign in to comment.