-
Notifications
You must be signed in to change notification settings - Fork 1
/
LevelWalk.h
55 lines (35 loc) · 858 Bytes
/
LevelWalk.h
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* File: LevelWalk.h
* Author: mbk-11-22
*
* Created on December 28, 2012, 1:22 PM
*/
#ifndef LEVELWALK_H
#define LEVELWALK_H
#include<iostream>
#include<cstdlib>
#include<ctime>
#include<algorithm>
#include<fstream>
#include<string>
#include<vector>
#include<math.h>
#include <gsl/gsl_rng.h>
using namespace std;
int k;
const gsl_rng_type * randGen;
gsl_rng *rng, *prng;
void RandomOrient(unsigned int n, float c, int simNum);
void levelOrient(unsigned int n, float c, int simNum);
void levelOrient_g(unsigned int n, float c, int load, int simNum);
void levelOrienthisto(unsigned int n, float c) ;
void RandomOrienthisto(unsigned int n, float c);
typedef struct
{
vector <unsigned int> choices;
void fillChoices(unsigned int n);
void free()
{
}
}It;
#endif /* LEVELWALK_H */