Benchmark_accumulator.Entry
Sourcetype ('param, 'a) parameterised_spec = {
arg_name : string;
params : (string * 'param) list;
The first coordinate is some string representation of the second coordinate.
*)thunk : 'param -> unit -> 'a;
}
type test_spec =
| Regular_thunk : ([ `init ] -> unit -> 'a) -> test_spec
| Parameterised_thunk : ('param, 'a) parameterised_spec -> test_spec