|
@@ -110,9 +110,9 @@ let make_uniq_data = [
|
|
|
|
|
|
let t_set_fast =
|
|
|
List.map make_uniq_data ~f:(fun (t, s, name) -> (
|
|
|
- let t = List.map ~f:Tools.to_entry t in
|
|
|
- let s = List.map ~f:Tools.to_entry s in
|
|
|
- (make_uniq t s), name))
|
|
|
+ let t = List.map ~f:Tools.to_entry t in
|
|
|
+ let s = List.map ~f:Tools.to_entry s in
|
|
|
+ (make_uniq t s), name))
|
|
|
|> List.map ~f:(fun ( f,name ) -> (name, `Quick, f))
|
|
|
;;
|
|
|
|
|
@@ -121,9 +121,9 @@ let t_set_long =
|
|
|
((big_pack ~message:"Much longer than real use case list of " 1_000)
|
|
|
@ (big_pack ~message:"Crazy long list of " 9_999))
|
|
|
~f:(fun (t, s, name) ->
|
|
|
- let t = List.map ~f:Tools.to_entry t in
|
|
|
- let s = List.map ~f:Tools.to_entry s in
|
|
|
- ( (make_uniq t s), name))
|
|
|
+ let t = List.map ~f:Tools.to_entry t in
|
|
|
+ let s = List.map ~f:Tools.to_entry s in
|
|
|
+ ( (make_uniq t s), name))
|
|
|
|> List.map ~f:(fun ( f,name ) -> (name, `Slow, f))
|
|
|
;;
|
|
|
|