-
Notifications
You must be signed in to change notification settings - Fork 1
/
pch.h
43 lines (36 loc) · 884 Bytes
/
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
#pragma once
#include <string>
#include <chrono>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <fstream>
#include <vector>
#include <bitset>
#include <array>
#include <set>
#include <map>
#include <random>
#include <algorithm>
#include <optional>
#include <utility>
#include <tuple>
#include <functional>
#include <exception>
#include <stdexcept>
#include <filesystem>
#include <execution>
#include <cstdint>
#include <limits>
using namespace std;
using namespace chrono;
#include <boost/multiprecision/cpp_int.hpp>
using boost::multiprecision::uint128_t;
#include <boost/compute.hpp>
namespace compute = boost::compute;
#include <boost/iterator/counting_iterator.hpp>
using boost::iterators::make_counting_iterator;
#include <boost/dynamic_bitset.hpp>
using dynamic_bitset = boost::dynamic_bitset<>;
#pragma comment(lib, "OpenCL.lib")
#include <intrin.h>