aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..e1a942e
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,24 @@
+#include <stdio.h>
+
+#define PRINT_ITEM_FREQUENCY
+// #define PRINT_ON_WALK
+// #define SAVE_TO_FILE_ON_WALK "walk.txt"
+#define WALK_LEN 1000000
+
+#define ITEM_CAP 30
+int ITEMS = 0;
+
+double chain[ITEM_CAP][ITEM_CAP] = {0};
+char item_names[ITEM_CAP][64] = {0};
+
+#include "markov.h"
+
+int main(void)
+{
+ srand(time(NULL));
+ generate_chain("files/chain.txt");
+
+ print_chain();
+ take_walk();
+ return 0;
+}