From 39161cf246aa2b34c7c02ebb6c88da3776979670 Mon Sep 17 00:00:00 2001 From: kartofen Date: Tue, 23 Aug 2022 20:45:56 +0300 Subject: Big Bang --- src/main.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/main.c (limited to 'src/main.c') 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 + +#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; +} -- cgit v1.2.3