-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.h
124 lines (110 loc) · 2.47 KB
/
debug.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#include<vector>
#include<string>
#include<map>
#include<algorithm>
#include <unordered_map>
#include<iostream>
#include<bitset>
#include<algorithm>
#include<fstream>
#include<numeric>
#include<xutility>
#include<queue>
#include<cassert>
#include<functional>
#include<cctype>
#include<iomanip>
#include<bit>
#include<tuple>
#include <random>
#include <algorithm>
#include<stack>
#include<array>
#include<sstream>
using namespace std;
using std::string;
using std::vector;
using std::priority_queue;
using std::function;
//Compared to pprint.h
//advantage : you can put multiple objects in one `debug()`,ie,debug(a,b,c).
//disadvantage :Poor readability, not as good as trace.h
//From https://github.com/goodStudyTnT/library/blob/master/copypaste/debug.h
string to_string(const string& s) {
return '"' + s + '"';
}
string to_string(const char* s) {
return to_string((string)s);
}
string to_string(bool b) {
return (b ? "true" : "false");
}
string to_string(vector<bool> v) {
bool first = true;
string res = "{";
for (int i = 0; i < static_cast<int>(v.size()); i++) {
if (!first) {
res += ", ";
}
first = false;
res += to_string(v[i]);
}
res += "}";
return res;
}
template <size_t N>
string to_string(bitset<N> v) {
string res = "";
for (size_t i = 0; i < N; i++) {
res += static_cast<char>('0' + v[i]);
}
return res;
}
template <typename A>
string to_string(A v) {
bool first = true;
string res = "{";
for (const auto& x : v) {
if (!first) {
res += ", ";
}
first = false;
res += to_string(x);
}
res += "}";
return res;
}
//from https://github.com/ftiasch/shoka/blob/master/debug.h#L32
template <typename... T>
string to_string(const tuple<T...>& t) {
stringstream ss;
ss << '(';
std::apply(
[&ss](const T &...args) {
int index = 0;
((ss << to_string(args) << (++index != sizeof...(T) ? ", " : "")), ...);
},
t);
ss << ")";
return ss.str();
}
template <typename A, typename B>
string to_string(pair<A, B> p) {
return "(" + to_string(p.first) + ", " + to_string(p.second) + ")";
}
void debug_out() {
cerr << endl;
}
template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
cerr << " " << to_string(H);
debug_out(T...);
}
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
int main()
{
tuple<int, int, int>sc = { 1,2,3}; //error!
tuple<int, int, int, int, int, int, int>sd = { 1,2,3,2,3,2,3 }; //error!
debug (sc);
debug(sd);
}