10
10
11
11
//! The Gamma and derived distributions.
12
12
13
+ use core:: fmt;
14
+
13
15
use self :: GammaRepr :: * ;
14
16
use self :: ChiSquaredRepr :: * ;
15
17
@@ -44,6 +46,19 @@ pub struct Gamma {
44
46
repr : GammaRepr ,
45
47
}
46
48
49
+ impl fmt:: Debug for Gamma {
50
+ fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
51
+ f. debug_struct ( "Gamma" )
52
+ . field ( "repr" ,
53
+ & match self . repr {
54
+ GammaRepr :: Large ( _) => "Large" ,
55
+ GammaRepr :: One ( _) => "Exp" ,
56
+ GammaRepr :: Small ( _) => "Small"
57
+ } )
58
+ . finish ( )
59
+ }
60
+ }
61
+
47
62
enum GammaRepr {
48
63
Large ( GammaLargeShape ) ,
49
64
One ( Exp ) ,
@@ -182,6 +197,18 @@ pub struct ChiSquared {
182
197
repr : ChiSquaredRepr ,
183
198
}
184
199
200
+ impl fmt:: Debug for ChiSquared {
201
+ fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
202
+ f. debug_struct ( "ChiSquared" )
203
+ . field ( "repr" ,
204
+ & match self . repr {
205
+ ChiSquaredRepr :: DoFExactlyOne => "DoFExactlyOne" ,
206
+ ChiSquaredRepr :: DoFAnythingElse ( _) => "DoFAnythingElse" ,
207
+ } )
208
+ . finish ( )
209
+ }
210
+ }
211
+
185
212
enum ChiSquaredRepr {
186
213
// k == 1, Gamma(alpha, ..) is particularly slow for alpha < 1,
187
214
// e.g. when alpha = 1/2 as it would be for this case, so special-
@@ -203,11 +230,13 @@ impl ChiSquared {
203
230
ChiSquared { repr : repr }
204
231
}
205
232
}
233
+
206
234
impl Sample < f64 > for ChiSquared {
207
235
fn sample < R : Rng > ( & mut self , rng : & mut R ) -> f64 {
208
236
self . ind_sample ( rng)
209
237
}
210
238
}
239
+
211
240
impl IndependentSample < f64 > for ChiSquared {
212
241
fn ind_sample < R : Rng > ( & self , rng : & mut R ) -> f64 {
213
242
match self . repr {
@@ -248,17 +277,29 @@ impl FisherF {
248
277
}
249
278
}
250
279
}
280
+
251
281
impl Sample < f64 > for FisherF {
252
282
fn sample < R : Rng > ( & mut self , rng : & mut R ) -> f64 {
253
283
self . ind_sample ( rng)
254
284
}
255
285
}
286
+
256
287
impl IndependentSample < f64 > for FisherF {
257
288
fn ind_sample < R : Rng > ( & self , rng : & mut R ) -> f64 {
258
289
self . numer . ind_sample ( rng) / self . denom . ind_sample ( rng) * self . dof_ratio
259
290
}
260
291
}
261
292
293
+ impl fmt:: Debug for FisherF {
294
+ fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
295
+ f. debug_struct ( "FisherF" )
296
+ . field ( "numer" , & self . numer )
297
+ . field ( "denom" , & self . denom )
298
+ . field ( "dof_ratio" , & self . dof_ratio )
299
+ . finish ( )
300
+ }
301
+ }
302
+
262
303
/// The Student t distribution, `t(nu)`, where `nu` is the degrees of
263
304
/// freedom.
264
305
pub struct StudentT {
@@ -277,18 +318,29 @@ impl StudentT {
277
318
}
278
319
}
279
320
}
321
+
280
322
impl Sample < f64 > for StudentT {
281
323
fn sample < R : Rng > ( & mut self , rng : & mut R ) -> f64 {
282
324
self . ind_sample ( rng)
283
325
}
284
326
}
327
+
285
328
impl IndependentSample < f64 > for StudentT {
286
329
fn ind_sample < R : Rng > ( & self , rng : & mut R ) -> f64 {
287
330
let StandardNormal ( norm) = rng. gen :: < StandardNormal > ( ) ;
288
331
norm * ( self . dof / self . chi . ind_sample ( rng) ) . sqrt ( )
289
332
}
290
333
}
291
334
335
+ impl fmt:: Debug for StudentT {
336
+ fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
337
+ f. debug_struct ( "StudentT" )
338
+ . field ( "chi" , & self . chi )
339
+ . field ( "dof" , & self . dof )
340
+ . finish ( )
341
+ }
342
+ }
343
+
292
344
#[ cfg( test) ]
293
345
mod tests {
294
346
use distributions:: { IndependentSample , Sample } ;
0 commit comments