forked from szcompressor/cuSZ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbusyheader.hh
48 lines (43 loc) · 904 Bytes
/
busyheader.hh
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
/**
* @file busyheader.hh
* @author Jiannan Tian
* @brief
* @version 0.4
* @date 2023-08-17
*
* (C) 2023 by Indiana University, Argonne National Laboratory
*
*/
#ifndef A4E54262_00A2_4059_BD74_95050FB447CA
#define A4E54262_00A2_4059_BD74_95050FB447CA
#include <algorithm>
#include <bitset>
#include <exception>
#include <functional>
#include <iostream>
#include <limits>
#include <numeric>
#include <sstream>
#include <stdexcept>
#include <string>
#include <type_traits>
#include <typeinfo>
#include <vector>
using std::bitset;
using std::cerr;
using std::cout;
using std::endl;
using std::runtime_error;
using std::string;
using std::stringstream;
using std::to_string;
using std::vector;
// C headers in Cxx
#include <cassert>
#include <cmath>
#include <cstddef>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#endif /* A4E54262_00A2_4059_BD74_95050FB447CA */