competitive programming scripts on Linux
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
3.2 KiB

3 years ago
  1. // C++ includes used for precompiling -*- C++ -*-
  2. // Copyright (C) 2003-2020 Free Software Foundation, Inc.
  3. //
  4. // This file is part of the GNU ISO C++ Library. This library is free
  5. // software; you can redistribute it and/or modify it under the
  6. // terms of the GNU General Public License as published by the
  7. // Free Software Foundation; either version 3, or (at your option)
  8. // any later version.
  9. // This library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. // Under Section 7 of GPL version 3, you are granted additional
  14. // permissions described in the GCC Runtime Library Exception, version
  15. // 3.1, as published by the Free Software Foundation.
  16. // You should have received a copy of the GNU General Public License and
  17. // a copy of the GCC Runtime Library Exception along with this program;
  18. // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  19. // <http://www.gnu.org/licenses/>.
  20. /** @file stdc++.h
  21. * This is an implementation file for a precompiled header.
  22. */
  23. // 17.4.1.2 Headers
  24. // C
  25. #ifndef _GLIBCXX_NO_ASSERT
  26. #include <cassert>
  27. #endif
  28. #include <cctype>
  29. #include <cerrno>
  30. #include <cfloat>
  31. #include <ciso646>
  32. #include <climits>
  33. #include <clocale>
  34. #include <cmath>
  35. #include <csetjmp>
  36. #include <csignal>
  37. #include <cstdarg>
  38. #include <cstddef>
  39. #include <cstdio>
  40. #include <cstdlib>
  41. #include <cstring>
  42. #include <ctime>
  43. #include <cwchar>
  44. #include <cwctype>
  45. #if __cplusplus >= 201103L
  46. #include <ccomplex>
  47. #include <cfenv>
  48. #include <cinttypes>
  49. #include <cstdalign>
  50. #include <cstdbool>
  51. #include <cstdint>
  52. #include <ctgmath>
  53. #include <cuchar>
  54. #endif
  55. // C++
  56. #include <algorithm>
  57. #include <bitset>
  58. #include <complex>
  59. #include <deque>
  60. #include <exception>
  61. #include <fstream>
  62. #include <functional>
  63. #include <iomanip>
  64. #include <ios>
  65. #include <iosfwd>
  66. #include <iostream>
  67. #include <istream>
  68. #include <iterator>
  69. #include <limits>
  70. #include <list>
  71. #include <locale>
  72. #include <map>
  73. #include <memory>
  74. #include <new>
  75. #include <numeric>
  76. #include <ostream>
  77. #include <queue>
  78. #include <set>
  79. #include <sstream>
  80. #include <stack>
  81. #include <stdexcept>
  82. #include <streambuf>
  83. #include <string>
  84. #include <typeinfo>
  85. #include <utility>
  86. #include <valarray>
  87. #include <vector>
  88. #if __cplusplus >= 201103L
  89. #include <array>
  90. #include <atomic>
  91. #include <chrono>
  92. #include <codecvt>
  93. #include <condition_variable>
  94. #include <forward_list>
  95. #include <future>
  96. #include <initializer_list>
  97. #include <mutex>
  98. #include <random>
  99. #include <ratio>
  100. #include <regex>
  101. #include <scoped_allocator>
  102. #include <system_error>
  103. #include <thread>
  104. #include <tuple>
  105. #include <typeindex>
  106. #include <type_traits>
  107. #include <unordered_map>
  108. #include <unordered_set>
  109. #endif
  110. #if __cplusplus >= 201402L
  111. #include <shared_mutex>
  112. #endif
  113. #if __cplusplus >= 201703L
  114. #include <any>
  115. #include <charconv>
  116. // #include <execution>
  117. #include <filesystem>
  118. #include <optional>
  119. #include <memory_resource>
  120. #include <string_view>
  121. #include <variant>
  122. #endif
  123. #if __cplusplus > 201703L
  124. #include <bit>
  125. #include <compare>
  126. #include <concepts>
  127. #include <numbers>
  128. #include <ranges>
  129. #include <span>
  130. #include <stop_token>
  131. // #include <syncstream>
  132. #include <version>
  133. #endif