-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpch.h
84 lines (69 loc) · 1.71 KB
/
pch.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
84
#ifndef PCH_H
#define PCH_H
#define CHECK_MEMORY_LEAKS
#ifdef _MSC_VER
#pragma warning(disable : 4996)
#ifdef CHECK_MEMORY_LEAKS
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#endif
#endif
#include <assert.h>
#include <string.h>
#include <algorithm>
#include <memory>
#include <exception>
#include <string>
#include <sstream>
#include <iostream>
#include <fstream>
#include <vector>
#include <map>
#include <set>
#include <unordered_map>
#include <unordered_set>
#include <stack>
using namespace std;
#define _TO_STRING(s) #s
#define TO_STRING(s) _TO_STRING(s)
#define FILE_LINE __FILE__"(" TO_STRING(__LINE__) ")"
#ifdef NDEBUG
#define ASSERT1(b, msg) if (b); else throw Exception(string(FILE_LINE " : " #b "->") + msg)
#define ASSERT(b) ASSERT1(b, "")
#else
//#define ASSERT1(b, msg) assert(b && msg)
//#define ASSERT(b) assert(b)
#define ASSERT1(b, msg) if (b); else throw Exception(string(FILE_LINE " : " #b "->") + msg)
#define ASSERT(b) ASSERT1(b, "")
#endif
class Exception:
public exception {
public:
Exception(const string& s): m_s(s) {
assert(0);
}
~Exception() throw(){}
const char* what() const throw() {
return m_s.c_str();
}
void addLine(const string& line) { m_s += "\n" + line; }
private:
string m_s;
};
string format(const char *fmt, ...);
string tabString(int n);
template <class T>
inline void hash_combine(int & seed, const T & v) {
seed ^= std::hash<T>()(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
}
#define sdelete(p) (delete (p), (p) = NULL)
#ifdef _MSC_VER
#define FORCE_INLINE __forceinline
#elif __GNUC__
//#define FORCE_INLINE __attribute__((always_inline))
#define FORCE_INLINE inline
#else
#define FORCE_INLINE inline
#endif
#endif