-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathheu.h
83 lines (63 loc) · 1.38 KB
/
heu.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#ifndef HEU_H_
#define HEU_H_
#include <stdint.h>
#include <algorithm>
#include <vector>
/**
* MACROS
*/
// PROBLEM PARAMETERS
#ifndef ROWS
#define ROWS (4)
#endif
#ifndef COLS
#define COLS (4)
#endif
#ifndef RHO
#define RHO (1)
#endif
#ifndef ROUNDS
#define ROUNDS (4)
#endif
// Branch number
#define BRANCH_NUM (ROWS+1)
// Should we collect and print trails to PDFs?
#define COLLECT_TRAILS (0)
// Use filtering for diffusion before calling CPLEX?
#ifndef USE_DIFFUSION_FILTER
#define USE_DIFFUSION_FILTER (0)
#endif
// Print every improvement or only the best result?
#ifndef PRINT_ONLY_BEST
#define PRINT_ONLY_BEST (1)
#endif
// Lower bound on trail weight for CPLEX
#ifndef BF_MIN
#define BF_MIN (0)
#endif
// Number of threads used in CPLEX (0 = dynamic behavior, i.e. use as many threads as possible)
#ifndef CPLEX_NUM_THREADS
#define CPLEX_NUM_THREADS (0)
#endif
// SIMULATED ANNEALING SEARCH PARAMETERS
#define SA_INNER_LOOPS (10000)
#define MAX_INPUT_DIFF_WEIGHT ((ROWS*COLS)/2)
// HELPER MACROS
#define WORD_MASK ((0x1ull << COLS) - 1)
#define ROR(x,j) (( (x >> j) | (x << (COLS-j)) ) & WORD_MASK)
/**
* TYPEDEFS
*/
#if COLS <= 16
typedef uint16_t word;
#elif COLS <= 32
typedef uint32_t word;
#elif COLS <= 64
typedef uint64_t word;
#endif
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
extern std::vector<u8> piRow;
#endif