-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathglobals.hpp
More file actions
56 lines (43 loc) · 820 Bytes
/
Copy pathglobals.hpp
File metadata and controls
56 lines (43 loc) · 820 Bytes
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
#ifndef GLOBALS_HPP
#define GLOBALS_HPP
#include <iostream>
#include <stdlib.h>
#include <ctime>
#include <fstream>
#include <string>
#include <ctime>
#include <random>
#include <stdio.h>
#include <iomanip>
#include <locale>
#include <sstream>
#include <string>
#include <cstring>
#include <vector>
#include <cstdlib>
#include <math.h>
#include <chrono>
#include <stdexcept>
#include <iostream>
#include <sstream>
using namespace std;
const unsigned int DIST_INFINITY = std::numeric_limits<unsigned int>::max() - 1;
typedef unsigned int uint;
typedef unsigned long long ull;
struct OutEdge{
uint end;
};
struct OutEdgeWeighted{
uint end;
uint w8;
};
struct Edge{
uint source;
uint end;
};
struct EdgeWeighted{
uint source;
uint end;
uint w8;
};
#endif // GLOBALS_HPP