From bf6b7fbdab8e3d3f025954fdb559310c452271e0 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Mon, 18 Nov 2019 11:22:24 -0600 Subject: add a new test for the quad fitter This commit adds a new test to test the quad fitter when the t0 quantile argument is less than 1. --- src/random.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/random.h') diff --git a/src/random.h b/src/random.h index 747cfeb..e2cba7d 100644 --- a/src/random.h +++ b/src/random.h @@ -21,6 +21,7 @@ #include /* for size_t */ double randn(void); +void rand_ball(double *pos, double radius); void rand_sphere(double *dir); void ran_choose_weighted(int *dest, double *w, size_t k, int *src, size_t n); -- cgit