aboutsummaryrefslogtreecommitdiffstats
path: root/src/random_heuristic.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/random_heuristic.c')
-rw-r--r--src/random_heuristic.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/random_heuristic.c b/src/random_heuristic.c
new file mode 100644
index 0000000..4e3e47f
--- /dev/null
+++ b/src/random_heuristic.c
@@ -0,0 +1,9 @@
+#include <stdlib.h>
+#include "random_heuristic.h"
+#include "structs.h"
+#include "common.h"
+
+struct front_item * random_heuristic(struct data * d) {
+
+ return NULL;
+}