suanPan
Loading...
Searching...
No Matches
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
27template<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
36template<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
44namespace 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
77template<typename T> bool get_input(istringstream& I, T& O) { return static_cast<bool>(I >> O); }
78
79template<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
85template<typename T, typename... U> bool get_input(istringstream& I, T& O, U&... R) { return static_cast<bool>(I >> O) ? get_input(I, R...) : false; }
86
87template<typename T> T get_input(istringstream& I) {
88 T O;
89 I >> O;
90 return O;
91}
92
93void ignore_whitespace(istringstream&);
94
95template<typename T> bool get_optional_input(istringstream& I, T& O) {
96 if(I.eof()) return true;
97
98 return static_cast<bool>(I >> O);
99}
100
101template<typename T> bool get_optional_input(istringstream& I, Col<T>& O) {
102 auto code = true;
103 for(auto& P : O) code &= I.eof() ? true : static_cast<bool>(I >> P);
104 return code;
105}
106
107template<typename T, typename... U> bool get_optional_input(istringstream& I, T& O, U&... R) {
108 if(I.eof()) return true;
109
110 return static_cast<bool>(I >> O) ? get_optional_input(I, R...) : false;
111}
112
113bool is_equal(const char*, const char*);
114bool is_equal(char, char);
115bool is_equal(int, char);
116bool is_equal(const string&, const char*);
117bool is_equal(const string&, const string&);
118
119bool if_contain(const string&, const char*);
120bool if_contain(const string&, const string&);
121bool if_contain(string&&, string&&);
122
123template<std::equality_comparable T> std::pair<bool, std::int64_t> if_contain(const std::vector<T>& container, const T target) {
124 auto position = std::find(container.begin(), container.end(), target);
125
126 return {position != container.end() && container.size() > 0, position - container.begin()};
127}
128
129bool is_true(const char*);
130bool is_false(const char*);
131bool is_true(const string&);
132bool is_false(const string&);
133
134bool is_integer(const string&);
135
136#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
std::enable_if_t<!std::numeric_limits< T >::is_integer, bool > approx_equal(T x, T y, int ulp=2)
Definition: utility.h:58
const std::vector< T > & unique(std::vector< T > &container)
Definition: utility.h:45
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
constexpr T & hacker(const T &I)
Definition: utility.h:52
bool get_input(istringstream &I, T &O)
Definition: utility.h:77
bool is_integer(const string &)
Definition: utility.cpp:122
constexpr T suanpan_max_element(T start, T end)
Definition: utility.h:36
bool is_false(const char *)
Definition: utility.cpp:116
void ignore_whitespace(istringstream &)
Definition: utility.cpp:92
bool if_contain(const string &, const char *)
Definition: utility.cpp:108
bool is_equal(const char *, const char *)
Definition: utility.cpp:98
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:95
bool is_true(const char *)
Definition: utility.cpp:114