blob: 01dfe23aa3746bd341b58f1a71a2b0ba436ba0c9 (
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
25
|
#include <stdio.h>
#include <time.h>
#define PRINT_ITEM_FREQUENCY
#define PRINT_ON_WALK
// #define SAVE_TO_FILE_ON_WALK "out.txt"
#define WALK_LEN 100
#define ITEM_CAP 400
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/in.txt");
// print_chain();
take_walk();
return 0;
}
|