Skip to content

Commit

Permalink
Merge pull request #445 from hacspec/monomorphize-assoc-type-universe…
Browse files Browse the repository at this point in the history
…-index

fix(proof-libs/fstar): make implicit a few parameters
  • Loading branch information
W95Psp committed Jan 22, 2024
2 parents 83d3fae + 55f4b13 commit b938d4f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ val update_at_usize
(ensures (fun res -> res == Seq.upd s (v i) x))

val update_at_range #n
(t: Type0)
(#t: Type0)
(s: t_Slice t)
(i: t_Range (int_t n))
(x: t_Slice t)
Expand All @@ -31,7 +31,7 @@ val update_at_range #n
Seq.slice res (v i.f_end) (Seq.length res) == Seq.slice s (v i.f_end) (Seq.length s)))

val update_at_range_to #n
(t: Type0)
(#t: Type0)
(s: t_Slice t)
(i: t_RangeTo (int_t n))
(x: t_Slice t)
Expand All @@ -43,7 +43,7 @@ val update_at_range_to #n
Seq.slice res (v i.f_end) (Seq.length res) == Seq.slice s (v i.f_end) (Seq.length s)))

val update_at_range_from #n
(t: Type0)
(#t: Type0)
(s: t_Slice t)
(i: t_RangeFrom (int_t n))
(x: t_Slice t)
Expand All @@ -55,7 +55,7 @@ val update_at_range_from #n
Seq.slice res (v i.f_start) (Seq.length res) == x))

val update_at_range_full
(t: Type0)
(#t: Type0)
(s: t_Slice t)
(i: t_RangeFull)
(x: t_Slice t)
Expand Down

0 comments on commit b938d4f

Please sign in to comment.