From 983f091af7849f259366f641b438ac1fee3df940 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Wed, 3 Feb 2021 19:40:10 +0530 Subject: Move source files and headers to separate directories. * extent-sampling.h, gaussian-nd-random.h, nd-random.h, oracles.h, utils.h: Move into include directory. * extent-sampling.c, gaussian-nd-random.c, nd-random.c, oracles.c, utils.c: Move into src directory. * CMakeLists.txt: Set include as include directory. Look for source files inside src directory. --- oracles.h | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 oracles.h (limited to 'oracles.h') diff --git a/oracles.h b/oracles.h deleted file mode 100644 index a661c94..0000000 --- a/oracles.h +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef ORACLES_H -#define ORACLES_H - -#include -#include - -double bernoulli_extent_generator (const gsl_rng* r, double p, double r0, double r1); -double bernoulli_true_volume (double p, double r0, double r1, unsigned int dimension); - -double uniform_extent_generator (const gsl_rng* r, double a, double b); -double uniform_true_volume (double a, double b, unsigned int dimension); - -double beta_extent_generator (const gsl_rng* r, double alpha, double beta); -double beta_true_volume (double alpha, double beta, unsigned int dimension); - -double symmetric_spiral_extent_oracle (const gsl_vector* x); - -double right_triangle_extent_oracle (const gsl_vector* x, double base, double height); -double right_triangle_true_volume (double base, double height); - -double sphere_extent_oracle (const gsl_vector* x, double radius); -double sphere_maximum_extent (double radius); - -double plane_extent_oracle (const gsl_vector* x, double displacement); - -double cube_extent_oracle (const gsl_vector* x, double edge); -double cube_extent_oracle_with_center (const gsl_vector* x, const gsl_vector* center, double edge); -double cube_true_volume (double edge, unsigned int dimension); -double cube_maximum_extent (double edge, unsigned int dimension); - -double ellipsoid_extent_oracle (const gsl_vector* x, const gsl_vector* axes); -double ellipsoid_true_volume (const gsl_vector* axes); - -double spheroid_extent_oracle (const gsl_vector* x, double eccentricity); -double spheroid_true_volume (double eccentricity, unsigned int dimension); - -#endif -- cgit v1.2.3