suanPan
utility.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright (C) 2017-2023 Theodore Chang
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program 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  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
16  ******************************************************************************/
17 
18 #ifndef UTILITY_H
19 #define UTILITY_H
20 
21 #include <concepts>
22 #include <suanPan.h>
23 #ifdef __cpp_lib_execution
24 #include <execution>
25 #endif
26 
27 template<sp_i IT, typename F> void suanpan_for(const IT start, const IT end, F&& FN) {
28 #ifdef SUANPAN_MT
29  static tbb::affinity_partitioner ap;
30  tbb::parallel_for(start, end, std::forward<F>(FN), ap);
31 #else
32  for(IT I = start; I < end; ++I) FN(I);
33 #endif
34 }
35 
36 template<typename T> constexpr T suanpan_max_element(T start, T end) {
37 #ifdef __cpp_lib_execution
38  return std::max_element(std::execution::par, start, end);
39 #else
40  return std::max_element(start, end);
41 #endif
42 }
43 
44 namespace suanpan {
45  template<typename T> [[maybe_unused]] const std::vector<T>& unique(std::vector<T>& container) {
46  std::sort(container.begin(), container.end());
47  container.erase(std::unique(container.begin(), container.end()), container.end());
48  container.shrink_to_fit();
49  return container;
50  }
51 
52  template<typename T> constexpr T& hacker(const T& I) { return const_cast<T&>(I); }
53 
54  template<typename T> constexpr T*& hacker(const T* const& I) { return const_cast<T*&>(I); }
55 
56  template<typename T> T sign(const T& I) { return (I > T(0)) - (I < T(0)); }
57 
58  template<typename T> std::enable_if_t<!std::numeric_limits<T>::is_integer, bool> approx_equal(T x, T y, int ulp = 2) { return fabs(x - y) <= std::numeric_limits<T>::epsilon() * fabs(x + y) * ulp || fabs(x - y) < std::numeric_limits<T>::min(); }
59 
60  unsigned long long binomial(unsigned long long, unsigned long long);
61 
62  char to_upper(char);
63  char to_lower(char);
64 
65  void to_upper(string&);
66  void to_lower(string&);
67  string to_upper(const string&);
68  string to_lower(const string&);
69  string to_upper(string&&);
70  string to_lower(string&&);
71 
72  namespace expression {
73  std::vector<std::pair<string, unsigned>> split(const std::string_view& variable_string);
74  } // namespace expression
75 } // namespace suanpan
76 
77 template<typename T> bool get_input(istringstream& I, T& O) { return static_cast<bool>(I >> O); }
78 
79 template<typename T> bool get_input(istringstream& I, Col<T>& O) {
80  auto code = true;
81  for(auto& P : O) code &= static_cast<bool>(I >> P);
82  return code;
83 }
84 
85 template<typename T> bool get_input(istringstream& I, std::vector<T>& O) {
86  T value;
87  while(get_input(I, value)) O.emplace_back(value);
88  return true;
89 }
90 
91 template<typename T, typename... U> bool get_input(istringstream& I, T& O, U&... R) { return static_cast<bool>(I >> O) ? get_input(I, R...) : false; }
92 
93 template<typename T> T get_input(istringstream& I) {
94  T O;
95  I >> O;
96  return O;
97 }
98 
99 void ignore_whitespace(istringstream&);
100 
101 template<typename T> bool get_optional_input(istringstream& I, T& O) {
102  if(I.eof()) return true;
103 
104  return static_cast<bool>(I >> O);
105 }
106 
107 template<typename T> bool get_optional_input(istringstream& I, Col<T>& O) {
108  auto code = true;
109  for(auto& P : O) code &= I.eof() ? true : static_cast<bool>(I >> P);
110  return code;
111 }
112 
113 template<typename T, typename... U> bool get_optional_input(istringstream& I, T& O, U&... R) {
114  if(I.eof()) return true;
115 
116  return static_cast<bool>(I >> O) ? get_optional_input(I, R...) : false;
117 }
118 
119 string get_remaining(istringstream&);
120 
121 bool is_equal(const char*, const char*);
122 bool is_equal(char, char);
123 bool is_equal(int, char);
124 bool is_equal(const string&, const char*);
125 bool is_equal(const char*, const string&);
126 bool is_equal(const string&, const string&);
127 
128 bool if_contain(const string&, const char*);
129 bool if_contain(const string&, const string&);
130 bool if_contain(string&&, string&&);
131 
132 template<std::equality_comparable T> std::pair<bool, std::int64_t> if_contain(const std::vector<T>& container, const T target) {
133  auto position = std::find(container.begin(), container.end(), target);
134 
135  return {position != container.end() && container.size() > 0, position - container.begin()};
136 }
137 
138 bool is_true(const char*);
139 bool is_false(const char*);
140 bool is_true(const string&);
141 bool is_false(const string&);
142 
143 bool is_integer(const string&);
144 
145 double perturb(double);
146 
147 #endif
Storage< T >::iterator end(Storage< T > &S)
Definition: Storage.hpp:202
std::vector< std::pair< string, unsigned > > split(const std::string_view &variable_string)
Definition: utility.cpp:69
Definition: MatrixModifier.hpp:36
constexpr T & hacker(const T &I)
Definition: utility.h:52
char to_lower(char)
Definition: utility.cpp:37
T sign(const T &I)
Definition: utility.h:56
unsigned long long binomial(unsigned long long, unsigned long long)
Definition: utility.cpp:21
char to_upper(char)
Definition: utility.cpp:35
const std::vector< T > & unique(std::vector< T > &container)
Definition: utility.h:45
std::enable_if_t<!std::numeric_limits< T >::is_integer, bool > approx_equal(T x, T y, int ulp=2)
Definition: utility.h:58
bool get_input(istringstream &I, T &O)
Definition: utility.h:77
bool is_integer(const string &)
Definition: utility.cpp:129
constexpr T suanpan_max_element(T start, T end)
Definition: utility.h:36
bool is_false(const char *)
Definition: utility.cpp:123
string get_remaining(istringstream &)
Definition: utility.cpp:98
double perturb(double)
Definition: utility.cpp:131
void ignore_whitespace(istringstream &)
Definition: utility.cpp:92
bool if_contain(const string &, const char *)
Definition: utility.cpp:115
bool is_equal(const char *, const char *)
Definition: utility.cpp:103
void suanpan_for(const IT start, const IT end, F &&FN)
Definition: utility.h:27
bool get_optional_input(istringstream &I, T &O)
Definition: utility.h:101
bool is_true(const char *)
Definition: utility.cpp:121