Skip to content

Commit

Permalink
chore: update F*
Browse files Browse the repository at this point in the history
  • Loading branch information
TWal committed Aug 27, 2024
1 parent d5182f0 commit 3978d7f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion fstar/common/proofs/MLS.MiscLemmas.fst
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,11 @@ val sorted_append:
let rec sorted_append #a lt cutoff l1 l2 =
match l1 with
| [] -> ()
| [h] -> ()
| [h] -> (
match l2 with
| [] -> ()
| _::_ -> ()
)
| h::t -> sorted_append lt cutoff t l2
#pop-options

Expand Down

0 comments on commit 3978d7f

Please sign in to comment.