aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAlexandre Jesus <adbjesus@gmail.com>2016-09-22 02:03:20 +0100
committerAlexandre Jesus <adbjesus@gmail.com>2016-09-22 02:03:20 +0100
commit7963cc3c89b8c03a073d17f58833ad191a3903a9 (patch)
tree685ac3c6449023a5307ecee0e10a55701ebc3998 /include
parente7fcca35efae60ca2e24225b046ab4e9a801b031 (diff)
downloadlibuknapsack-7963cc3c89b8c03a073d17f58833ad191a3903a9.tar.gz
libuknapsack-7963cc3c89b8c03a073d17f58833ad191a3903a9.zip
Create initial files for random heuristics
Diffstat (limited to 'include')
-rw-r--r--include/random_heuristic.h8
1 files changed, 8 insertions, 0 deletions
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