From 7963cc3c89b8c03a073d17f58833ad191a3903a9 Mon Sep 17 00:00:00 2001 From: Alexandre Jesus Date: Thu, 22 Sep 2016 02:03:20 +0100 Subject: Create initial files for random heuristics --- include/random_heuristic.h | 8 ++++++++ src/random_heuristic.c | 9 +++++++++ 2 files changed, 17 insertions(+) create mode 100644 include/random_heuristic.h create mode 100644 src/random_heuristic.c diff --git a/include/random_heuristic.h b/include/random_heuristic.h new file mode 100644 index 0000000..586777e --- /dev/null +++ b/include/random_heuristic.h @@ -0,0 +1,8 @@ +#ifndef _RANDOM_HEURISTIC_H +#define _RANDOM_HEURISTIC_H + +#include "structs.h" + +struct front_item * random_heuristic(struct data *); + +#endif 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 +#include "random_heuristic.h" +#include "structs.h" +#include "common.h" + +struct front_item * random_heuristic(struct data * d) { + + return NULL; +} -- cgit v1.2.3