1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
//! This module provides tools for generating input data helpful for testing algorithms.
//!
//! The [`Input`] trait is the core of this module and must be implemented by the input types
//! used by algorithms. This trait defines two methods:
//!
//! * `get_size(&self) -> usize`: returns the size of the input.
//! * `generate_input(size: usize) -> Self`: generates a random input of the given size.
//!
//! This module also provides the [`InputBuilder`] struct, which is used to build your input
//! and store it into an [`InputSet`] instance. You can use the InputBuilder as soon as you
//! have:
//!
//! * Figured out which distribution suits your needs (read the [distribution] documentation
//! for more infos).
//! * Created your input type (read the example below).
//!
//! # Example
//!
//! ## Basic usage
//!
//! Let's say we are testing the performance of our new algorithm to check if a given
//! number is prime. We'll start by defining a new type to represent our input type:
//!
//! ```
//! pub struct PrimeTestInput {
//! pub number: u32,
//! }
//! ```
//!
//! Next, we need to implement the [`Input`] trait for our new type:
//!
//! ```
//! # use rand::Rng;
//! # use chrono_probe::input::Input;
//!
//! # pub struct PrimeTestInput {
//! # pub number: u32,
//! # }
//!
//! impl Input for PrimeTestInput {
//! type Builder = ();
//!
//! // Return the size of the input.
//! fn get_size(&self) -> usize {
//! // We use the number of bits as size.
//! self.number.to_be_bytes().len() * 8
//! }
//!
//! // Generate a random input of the given size.
//! fn generate_input(size: usize, builder: &Self::Builder) -> Self {
//! let mut rng = rand::thread_rng();
//! PrimeTestInput {
//! // We consider the size as the number of bits.
//! number: rng.gen_range(2u32.pow((size-1) as u32)..2u32.pow(size as u32)),
//! }
//! }
//! }
//! ```
//!
//! Now we can use our `PrimeTestInput` type to generate inputs for testing our algorithm!
//!
//! Note that the input size is taken as an argument by the `generate_input` method. If
//! you want to know more about the input sizes generation, you can read the documentation
//! of the [`distribution`] submodule.
//!
//! ## Multiple input generators
//!
//! Now, you may be curious about the [`Builder`](Input::Builder) type.
//!
//! The [`Builder`](Input::Builder) type is helpful when you want to choose between different
//! input generators. In the previous example, we only have needed one generator, so we used ()
//! as the [`Builder`](Input::Builder) type. However, if we had more than one generator, we
//! could define an enum like this:
//!
//! ```
//! pub enum Generator {
//! Fast,
//! Uniform,
//! }
//! ```
//!
//! Then, we could use `Generator` as the [`Builder`](Input::Builder) type:
//!
//! ```
//! use chrono_probe::input::Input;
//!
//! # pub struct PrimeTestInput {
//! # pub number: u32,
//! # }
//!
//! # pub enum Generator {
//! # Fast,
//! # Uniform,
//! # }
//!
//! # fn generate_order_vector_fast(size: usize, min: u32, max: u32) -> PrimeTestInput { todo!() }
//! # fn generate_order_vector(size: usize, min: u32, max: u32) -> PrimeTestInput { todo!() }
//!
//! impl Input for PrimeTestInput {
//! type Builder = Generator;
//!
//! // Return the size of the input.
//! fn get_size(&self) -> usize {
//! // We use the number of bits as size.
//! self.number.to_be_bytes().len() * 8
//! }
//!
//! // Generate a random input of the given size.
//! fn generate_input(size: usize, builder: &Self::Builder) -> Self {
//! match builder {
//! Generator::Fast => generate_order_vector_fast(size, u32::MIN, u32::MAX),
//! Generator::Uniform => generate_order_vector(size, u32::MIN, u32::MAX),
//! }
//! }
//! }
//! ```
//!
//! ### Using primitive types as input
//!
//! If you're new to Rust, you may be wondering why we need to create a new type for the input
//! when we could just use the `u32` type itself. The reason is that only traits you own can be
//! implemented for primitive types, and this library owns the [`Input`] trait, not your crate
//! where you're using this library.
//! If you need to use a primitive type as an input you need to create a new wrapper type, for
//! more information refer to the [rust guide](https://doc.rust-lang.org/rust-by-example/generics/new_types.html)
use File;
use Serialize;
use Distribution;
/// Trait that must be implemented by algorithms' input types.
/// Struct that holds the inputs.
/// Struct used for building an [`InputSet`].