Skip to content

Commit 73ba5b6

Browse files
author
Lucas Franceschino
committed
Revert "fix(proofs-lib/fstar): make type implicits on typeclasses"
This reverts commit 253fb96.
1 parent e366d5c commit 73ba5b6

21 files changed

+100
-100
lines changed

proof-libs/fstar/core/Alloc.Vec.fst

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ let from_elem #a (item: a) (len: usize) = Seq.create (v len) item
3030

3131
open Rust_primitives.Hax
3232
open Core.Ops.Index
33-
instance update_at_tc_array t n: update_at_tc #(t_Vec t ()) #(int_t n) = {
34-
super_index = FStar.Tactics.Typeclasses.solve <: t_Index #(t_Vec t ()) #(int_t n);
33+
instance update_at_tc_array t n: update_at_tc (t_Vec t ()) (int_t n) = {
34+
super_index = FStar.Tactics.Typeclasses.solve <: t_Index (t_Vec t ()) (int_t n);
3535
update_at = (fun arr i x -> FStar.Seq.upd arr (v i) x);
3636
}
3737

proof-libs/fstar/core/Core.Clone.fst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module Core.Clone
22

3-
class t_Clone #self = {
3+
class t_Clone self = {
44
f_clone: x:self -> r:self {x == r}
55
}
66

77
(** Everything is clonable *)
8-
instance clone_all (t: Type): t_Clone #t = {
8+
instance clone_all (t: Type): t_Clone t = {
99
f_clone = (fun x -> x);
1010
}
1111

proof-libs/fstar/core/Core.Cmp.fsti

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module Core.Cmp
22
open Rust_primitives
33

4-
class min_tc #t = {
4+
class min_tc t = {
55
min: t -> t -> t
66
}
77

8-
instance min_inttype (#t:inttype): min_tc #(int_t t) = {
8+
instance min_inttype (#t:inttype): min_tc (int_t t) = {
99
min = fun a b -> if a <. b then a else b
1010
}
1111

@@ -14,26 +14,26 @@ type t_Ordering =
1414
| Ordering_Equal : t_Ordering
1515
| Ordering_Greater : t_Ordering
1616

17-
class t_Ord (#v_Self: Type) = {
17+
class t_Ord (v_Self: Type) = {
1818
f_cmp:v_Self -> v_Self -> t_Ordering;
1919
// f_max:v_Self -> v_Self -> v_Self;
2020
// f_min:v_Self -> v_Self -> v_Self;
2121
// f_clamp:v_Self -> v_Self -> v_Self -> v_Self
2222
}
2323

24-
class t_PartialEq (#v_Self: Type) (#v_Rhs: Type) = {
24+
class t_PartialEq (v_Self: Type) (v_Rhs: Type) = {
2525
// __constraint_1069563329_t_PartialEq:t_PartialEq v_Self v_Rhs;
2626
f_eq:v_Self -> v_Rhs -> bool;
2727
f_ne:v_Self -> v_Rhs -> bool
2828
}
2929

30-
instance all_eq (a: eqtype): t_PartialEq #a #a = {
30+
instance all_eq (a: eqtype): t_PartialEq a a = {
3131
f_eq = (fun x y -> x = y);
3232
f_ne = (fun x y -> x <> y);
3333
}
3434

35-
class t_PartialOrd (#v_Self: Type) (#v_Rhs: Type) = {
36-
__constraint_Rhs_t_PartialEq:t_PartialEq #v_Self #v_Rhs;
35+
class t_PartialOrd (v_Self: Type) (v_Rhs: Type) = {
36+
__constraint_Rhs_t_PartialEq:t_PartialEq v_Self v_Rhs;
3737
// __constraint_Rhs_t_PartialOrd:t_PartialOrd v_Self v_Rhs;
3838
f_partial_cmp:v_Self -> v_Rhs -> Core.Option.t_Option t_Ordering;
3939
// f_lt:v_Self -> v_Rhs -> bool;
@@ -47,7 +47,7 @@ type t_Reverse t = | Reverse of t
4747
let impl__then x y = x
4848

4949
[@FStar.Tactics.Typeclasses.tcinstance]
50-
val ord_u64: t_Ord #u64
50+
val ord_u64: t_Ord u64
5151

5252
[@FStar.Tactics.Typeclasses.tcinstance]
53-
val ord_reverse t {| t_Ord #t |}: t_Ord #(t_Reverse t)
53+
val ord_reverse t {| t_Ord t |}: t_Ord (t_Reverse t)

proof-libs/fstar/core/Core.Convert.fst

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
module Core.Convert
33
open Rust_primitives
44

5-
class try_into_tc #self #t = {
5+
class try_into_tc self t = {
66
[@@@FStar.Tactics.Typeclasses.no_method]
77
f_Error: Type0;
88
f_try_into: self -> Core.Result.t_Result t f_Error
99
}
1010

11-
instance impl_6 (t: Type0) (len: usize): try_into_tc #(t_Slice t) #(t_Array t len) = {
11+
instance impl_6 (t: Type0) (len: usize): try_into_tc (t_Slice t) (t_Array t len) = {
1212
f_Error = Core.Array.t_TryFromSliceError;
1313
f_try_into = (fun (s: t_Slice t) ->
1414
if Core.Slice.impl__len s = len
@@ -18,26 +18,26 @@ instance impl_6 (t: Type0) (len: usize): try_into_tc #(t_Slice t) #(t_Array t le
1818
}
1919

2020

21-
instance impl_6_refined (t: Type0) (len: usize): try_into_tc #(s: t_Slice t {Core.Slice.impl__len s == len}) #(t_Array t len) = {
21+
instance impl_6_refined (t: Type0) (len: usize): try_into_tc (s: t_Slice t {Core.Slice.impl__len s == len}) (t_Array t len) = {
2222
f_Error = Core.Array.t_TryFromSliceError;
2323
f_try_into = (fun (s: t_Slice t {Core.Slice.impl__len s == len}) ->
2424
Core.Result.Result_Ok (s <: t_Array t len)
2525
)
2626
}
2727

28-
class t_Into #self #t = {
28+
class t_Into self t = {
2929
f_into_pre: self -> bool;
3030
f_into_post: self -> t -> bool;
3131
f_into: self -> t;
3232
}
3333

34-
class t_From #self #t = {
34+
class t_From self t = {
3535
f_from_pre: t -> bool;
3636
f_from_post: t -> self -> bool;
3737
f_from: t -> self;
3838
}
3939

40-
class t_TryFrom #self #t = {
40+
class t_TryFrom self t = {
4141
[@@@FStar.Tactics.Typeclasses.no_method]
4242
f_Error: Type0;
4343
f_try_from_pre: t -> bool;
@@ -47,26 +47,26 @@ class t_TryFrom #self #t = {
4747

4848
instance integer_into
4949
(t:inttype) (t':inttype { minint t >= minint t' /\ maxint t <= maxint t' })
50-
: t_From #(int_t t') #(int_t t)
50+
: t_From (int_t t') (int_t t)
5151
= {
5252
f_from_pre = (fun _ -> true);
5353
f_from_post = (fun _ _ -> true);
5454
f_from = (fun (x: int_t t) -> Rust_primitives.Integers.cast #t #t' x);
5555
}
5656

57-
instance into_from_from a b {| t_From #a #b |}: t_Into #b #a = {
57+
instance into_from_from a b {| t_From a b |}: t_Into b a = {
5858
f_into_pre = (fun _ -> true);
5959
f_into_post = (fun _ _ -> true);
6060
f_into = (fun x -> f_from x)
6161
}
6262

63-
instance from_id a: t_From #a #a = {
63+
instance from_id a: t_From a a = {
6464
f_from_pre = (fun _ -> true);
6565
f_from_post = (fun _ _ -> true);
6666
f_from = (fun x -> x)
6767
}
6868

69-
class t_AsRef #self #t = {
69+
class t_AsRef self t = {
7070
f_as_ref_pre: self -> bool;
7171
f_as_ref_post: self -> t -> bool;
7272
f_as_ref: self -> t;
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Core.Default
22

3-
class t_Default (#t: Type0) = {
3+
class t_Default (t: Type0) = {
44
v_default: unit -> t;
55
}

proof-libs/fstar/core/Core.Fmt.fsti

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ val t_Error: Type0
66
type t_Result = Core.Result.t_Result unit t_Error
77

88
val t_Formatter: Type0
9-
class t_Display #t_Self = {
9+
class t_Display t_Self = {
1010
f_fmt_pre: t_Self -> Core.Fmt.t_Formatter -> bool;
1111
f_fmt_post: t_Self -> Core.Fmt.t_Formatter -> (Core.Fmt.t_Formatter & Core.Result.t_Result Prims.unit Core.Fmt.t_Error) -> bool;
1212
f_fmt: t_Self -> Core.Fmt.t_Formatter -> (Core.Fmt.t_Formatter & Core.Result.t_Result Prims.unit Core.Fmt.t_Error)
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
module Core.Iter.Traits.Collect
22

3-
class into_iterator #self = {
3+
class into_iterator self = {
44
f_IntoIter: Type0;
55
// f_Item: Type0;
66
f_into_iter: self -> f_IntoIter;
77
}
88

9-
let t_IntoIterator #self = into_iterator #self
9+
let t_IntoIterator = into_iterator
1010

11-
unfold instance impl t {| Core.Iter.Traits.Iterator.iterator #t |}: into_iterator #t = {
11+
unfold instance impl t {| Core.Iter.Traits.Iterator.iterator t |}: into_iterator t = {
1212
f_IntoIter = t;
1313
f_into_iter = id;
1414
}

proof-libs/fstar/core/Core.Iter.Traits.Iterator.fst

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ unfold type t_all self item
2828
// f_enumerate: t_enumerate self;
2929
// }
3030

31-
class iterator (#self: Type u#0): Type u#1 = {
31+
class iterator (self: Type u#0): Type u#1 = {
3232
[@@@FStar.Tactics.Typeclasses.no_method]
3333
f_Item: Type0;
3434
f_next: self -> self * option f_Item;

proof-libs/fstar/core/Core.Iter.fsti

+11-11
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ open Core.Iter.Traits.Iterator
99
(**** Enumerate *)
1010
(** This lives in this file for cyclic dependencies reasons. *)
1111

12-
val iterator_enumerate_contains it (i: iterator #it)
12+
val iterator_enumerate_contains it (i: iterator it)
1313
: t_contains (Core.Iter.Adapters.Enumerate.t_Enumerate it) (usize * i.f_Item)
14-
val iterator_enumerate_fold it (i: iterator #it)
14+
val iterator_enumerate_fold it (i: iterator it)
1515
: t_fold (Core.Iter.Adapters.Enumerate.t_Enumerate it) (usize * i.f_Item) (iterator_enumerate_contains it i)
1616
val iterator_enumerate_enumerate it
1717
: t_enumerate (Core.Iter.Adapters.Enumerate.t_Enumerate it)
18-
val iterator_enumerate_all it (i: iterator #it)
18+
val iterator_enumerate_all it (i: iterator it)
1919
: t_all (Core.Iter.Adapters.Enumerate.t_Enumerate it) (usize * i.f_Item)
2020
val iterator_enumerate_step_by it
2121
: t_step_by (Core.Iter.Adapters.Enumerate.t_Enumerate it)
2222

23-
instance iterator_enumerate it {| i: iterator #it |}: iterator #(Core.Iter.Adapters.Enumerate.t_Enumerate it) =
23+
instance iterator_enumerate it {| i: iterator it |}: iterator (Core.Iter.Adapters.Enumerate.t_Enumerate it) =
2424
let open Core.Iter.Adapters.Enumerate in
2525
{
2626
f_Item = (usize * i.f_Item);
@@ -43,20 +43,20 @@ instance iterator_enumerate it {| i: iterator #it |}: iterator #(Core.Iter.Adapt
4343
(**** Step_by *)
4444
(** This lives in this file for cyclic dependencies reasons. *)
4545

46-
val iterator_step_by_contains it (i: iterator #it)
46+
val iterator_step_by_contains it (i: iterator it)
4747
: t_contains (Core.Iter.Adapters.Step_by.t_StepBy it) i.f_Item
48-
val iterator_step_by_fold it (i: iterator #it)
48+
val iterator_step_by_fold it (i: iterator it)
4949
: t_fold (Core.Iter.Adapters.Step_by.t_StepBy it) i.f_Item (iterator_step_by_contains it i)
50-
val iterator_step_by_next it (i: iterator #it)
50+
val iterator_step_by_next it (i: iterator it)
5151
: t_next (Core.Iter.Adapters.Step_by.t_StepBy it) i.f_Item
5252
val iterator_step_by_enumerate it
5353
: t_enumerate (Core.Iter.Adapters.Step_by.t_StepBy it)
54-
val iterator_step_by_all it (i: iterator #it)
54+
val iterator_step_by_all it (i: iterator it)
5555
: t_all (Core.Iter.Adapters.Step_by.t_StepBy it) i.f_Item
5656
val iterator_step_by_step_by it
5757
: t_step_by (Core.Iter.Adapters.Step_by.t_StepBy it)
5858

59-
unfold instance iterator_step_by it {| i: iterator #it |}: iterator #(Core.Iter.Adapters.Step_by.t_StepBy it) =
59+
unfold instance iterator_step_by it {| i: iterator it |}: iterator (Core.Iter.Adapters.Step_by.t_StepBy it) =
6060
let open Core.Iter.Adapters.Enumerate in
6161
{
6262
f_Item = i.f_Item;
@@ -81,7 +81,7 @@ val iterator_slice_enumerate (t: eqtype): t_enumerate (t_Slice t)
8181
val iterator_slice_step_by (t: eqtype): t_step_by (t_Slice t)
8282
val iterator_slice_all (t: eqtype): t_all (t_Slice t) t
8383

84-
instance iterator_slice (t: eqtype): iterator #(t_Slice t) = {
84+
instance iterator_slice (t: eqtype): iterator (t_Slice t) = {
8585
f_Item = t;
8686
f_next = iterator_slice_next t;
8787
// size_hint = (fun s -> Some (Rust_primitives.Arrays.length s));
@@ -103,7 +103,7 @@ val iterator_array_enumerate (t: eqtype) len: t_enumerate (t_Array t len)
103103
val iterator_array_step_by (t: eqtype) len: t_step_by (t_Array t len)
104104
val iterator_array_all (t: eqtype) len: t_all (t_Array t len) t
105105

106-
instance iterator_array (t: eqtype) len: iterator #(t_Array t len) = {
106+
instance iterator_array (t: eqtype) len: iterator (t_Array t len) = {
107107
f_Item = t;
108108
f_next = iterator_array_next t len;
109109
// size_hint = (fun (_s: t_Array t len) -> Some len);

proof-libs/fstar/core/Core.Marker.fst

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
module Core.Marker
22

3-
class t_Sized (#h: Type) = {
3+
class t_Sized (h: Type) = {
44
dummy_field: unit
55
}
66

77
(** we consider everything to be sized *)
8-
instance t_Sized_all t: t_Sized #t = {
8+
instance t_Sized_all t: t_Sized t = {
99
dummy_field = ()
1010
}
1111

12-
class t_Copy (#h: Type) = {
12+
class t_Copy (h: Type) = {
1313
dummy_copy_field: unit
1414
}
1515

1616
(** we consider everything to be copyable *)
17-
instance t_Copy_all t: t_Copy #t = {
17+
instance t_Copy_all t: t_Copy t = {
1818
dummy_copy_field = ()
1919
}

proof-libs/fstar/core/Core.Num.fsti

+8-8
Original file line numberDiff line numberDiff line change
@@ -47,50 +47,50 @@ val impl__usize__leading_zeros: usize -> u32
4747

4848
open Core.Ops.Arith
4949
unfold instance add_assign_num_refined_refined t ($phi1 $phi2: int_t t -> bool)
50-
: t_AddAssign #(x: int_t t {phi1 x}) #(y: int_t t {phi2 y}) = {
50+
: t_AddAssign (x: int_t t {phi1 x}) (y: int_t t {phi2 y}) = {
5151
f_add_assign_pre = (fun (x: int_t t {phi1 x}) (y: int_t t {phi2 y}) -> phi1 (x +. y));
5252
f_add_assign_post = (fun x y r -> x +. y = r);
5353
f_add_assign = (fun x y -> x +. y);
5454
}
5555
unfold instance add_assign_num_lhs_refined t ($phi1: int_t t -> bool)
56-
: t_AddAssign #(x: int_t t {phi1 x}) #(y: int_t t) = {
56+
: t_AddAssign (x: int_t t {phi1 x}) (y: int_t t) = {
5757
f_add_assign_pre = (fun (x: int_t t {phi1 x}) (y: int_t t) -> phi1 (x +. y));
5858
f_add_assign_post = (fun x y r -> x +. y = r);
5959
f_add_assign = (fun x y -> x +. y);
6060
}
6161
unfold instance add_assign_num_rhs_refined t ($phi1: int_t t -> bool)
62-
: t_AddAssign #(x: int_t t) #(y: int_t t {phi1 y}) = {
62+
: t_AddAssign (x: int_t t) (y: int_t t {phi1 y}) = {
6363
f_add_assign_pre = (fun (x: int_t t) (y: int_t t {phi1 y}) -> true);
6464
f_add_assign_post = (fun x y r -> x +. y = r);
6565
f_add_assign = (fun x y -> x +. y);
6666
}
6767
unfold instance add_assign_num t
68-
: t_AddAssign #(x: int_t t) #(y: int_t t) = {
68+
: t_AddAssign (x: int_t t) (y: int_t t) = {
6969
f_add_assign_pre = (fun (x: int_t t) (y: int_t t) -> true);
7070
f_add_assign_post = (fun x y r -> x +. y = r);
7171
f_add_assign = (fun x y -> x +. y);
7272
}
7373

7474
unfold instance sub_assign_num_refined_refined t ($phi1 $phi2: int_t t -> bool)
75-
: t_SubAssign #(x: int_t t {phi1 x}) #(y: int_t t {phi2 y}) = {
75+
: t_SubAssign (x: int_t t {phi1 x}) (y: int_t t {phi2 y}) = {
7676
f_sub_assign_pre = (fun (x: int_t t {phi1 x}) (y: int_t t {phi2 y}) -> phi1 (x -. y));
7777
f_sub_assign_post = (fun x y r -> x -. y = r);
7878
f_sub_assign = (fun x y -> x -. y);
7979
}
8080
unfold instance sub_assign_num_lhs_refined t ($phi1: int_t t -> bool)
81-
: t_SubAssign #(x: int_t t {phi1 x}) #(y: int_t t) = {
81+
: t_SubAssign (x: int_t t {phi1 x}) (y: int_t t) = {
8282
f_sub_assign_pre = (fun (x: int_t t {phi1 x}) (y: int_t t) -> phi1 (x -. y));
8383
f_sub_assign_post = (fun x y r -> x -. y = r);
8484
f_sub_assign = (fun x y -> x -. y);
8585
}
8686
unfold instance sub_assign_num_rhs_refined t ($phi1: int_t t -> bool)
87-
: t_SubAssign #(x: int_t t) #(y: int_t t {phi1 y}) = {
87+
: t_SubAssign (x: int_t t) (y: int_t t {phi1 y}) = {
8888
f_sub_assign_pre = (fun (x: int_t t) (y: int_t t {phi1 y}) -> true);
8989
f_sub_assign_post = (fun x y r -> x -. y = r);
9090
f_sub_assign = (fun x y -> x -. y);
9191
}
9292
unfold instance sub_assign_num t
93-
: t_SubAssign #(x: int_t t) #(y: int_t t) = {
93+
: t_SubAssign (x: int_t t) (y: int_t t) = {
9494
f_sub_assign_pre = (fun (x: int_t t) (y: int_t t) -> true);
9595
f_sub_assign_post = (fun x y r -> x -. y = r);
9696
f_sub_assign = (fun x y -> x -. y);

0 commit comments

Comments
 (0)