diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-01-10 08:58:39 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-06 14:33:05 -0500 |
commit | 9feeb4cf97d98c7b8cf3c7e871b239cea835f3f4 (patch) | |
tree | 6dccd677f3159b96d2aa75d73fd63ed8ca73c577 /src/test/test_prob_distr.c | |
parent | 98fdc3e41a79625a5f4b51689a7c76fed4228d00 (diff) | |
download | tor-9feeb4cf97d98c7b8cf3c7e871b239cea835f3f4.tar.gz tor-9feeb4cf97d98c7b8cf3c7e871b239cea835f3f4.zip |
prob_distr: use "clang-format off" to avoid wide lines for URLs
Diffstat (limited to 'src/test/test_prob_distr.c')
-rw-r--r-- | src/test/test_prob_distr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/test_prob_distr.c b/src/test/test_prob_distr.c index c3d1c80d70..c5423ce14a 100644 --- a/src/test/test_prob_distr.c +++ b/src/test/test_prob_distr.c @@ -1223,14 +1223,16 @@ test_stochastic_weibull_impl(double lambda, double k) .k = k, }; +// clang-format off /* * XXX Consider applying a Tiku-Singh test: * * M.L. Tiku and M. Singh, `Testing the two-parameter * Weibull distribution', Communications in Statistics -- * Theory and Methods A10(9), 1981, 907--918. - *https://www.tandfonline.com/doi/pdf/10.1080/03610928108828082?needAccess=true +https://www.tandfonline.com/doi/pdf/10.1080/03610928108828082?needAccess=true */ +// clang-format on return test_psi_dist_sample(&dist.base); } |