summaryrefslogtreecommitdiff
path: root/src/graph_genfunc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph_genfunc.c')
-rw-r--r--src/graph_genfunc.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/graph_genfunc.c b/src/graph_genfunc.c
deleted file mode 100644
index d396206..0000000
--- a/src/graph_genfunc.c
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#include "fracture.h"
-
-double *genfunc_uniform(uint_t num, gsl_rng *r) {
- double *lattice = (double *)malloc(2 * num * sizeof(double));
-
- for (uint_t i = 0; i < 2 * num; i++) {
- lattice[i] = gsl_rng_uniform(r);
- }
-
- return lattice;
-}
-
-double *genfunc_hyperuniform(uint_t num, gsl_rng *r) {
- double *lattice = spheres(num, 0.8, 0.5, 0.9, 100, 100000);
-
- return lattice;
-}
-