aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
blob: e1a942effcc4892176e50076aab44e8354393f3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
}