micro-test-plus 3.2.2
The µTest++ Testing Framework
Loading...
Searching...
No Matches
math.h
Go to the documentation of this file.
1/*
2 * This file is part of the µOS++ project (https://micro-os-plus.github.io/).
3 * Copyright (c) 2021 Liviu Ionescu. All rights reserved.
4 *
5 * Permission to use, copy, modify, and/or distribute this software
6 * for any purpose is hereby granted, under the terms of the MIT license.
7 *
8 * If a copy of the license was not distributed with this file, it can
9 * be obtained from https://opensource.org/licenses/mit.
10 *
11 * Major parts of the code are inspired from v1.1.8 of the Boost UT project,
12 * released under the terms of the Boost Version 1.0 Software License,
13 * which can be obtained from https://www.boost.org/LICENSE_1_0.txt.
14 */
15
16#ifndef MICRO_TEST_PLUS_MATH_H_
17#define MICRO_TEST_PLUS_MATH_H_
18
19// ----------------------------------------------------------------------------
20
21#ifdef __cplusplus
22
23// ----------------------------------------------------------------------------
24
25#include <array>
26
27// ----------------------------------------------------------------------------
28
29#if defined(__GNUC__)
30#pragma GCC diagnostic push
31#pragma GCC diagnostic ignored "-Wconversion"
32#if defined(__clang__)
33#pragma clang diagnostic ignored "-Wc++98-compat"
34#endif
35#endif
36
38{
39 // --------------------------------------------------------------------------
40
48 namespace math
49 {
53 template <class T>
54 [[nodiscard]] constexpr auto
55 abs (const T t) -> T
56 {
57 return t < T{} ? -t : t;
58 }
59
63 template <class T>
64 [[nodiscard]] constexpr auto
65 min_value (const T& lhs, const T& rhs) -> const T&
66 {
67 return (rhs < lhs) ? rhs : lhs;
68 }
69
73 template <class T, class Exp_T>
74 [[nodiscard]] constexpr auto
75 pow (const T base, const Exp_T exp) -> T
76 {
77 // If the exponent is 0, return 1, otherwise recurse.
78 return exp ? T (base * pow (base, exp - Exp_T (1))) : T (1);
79 }
80
85 template <class T, char... Cs>
86 [[nodiscard]] constexpr auto
87 num () -> T
88 {
89 // Assume all are digits or dot or apostrophe.
90 static_assert (
91 ((Cs == '.' or Cs == '\'' or (Cs >= '0' and Cs <= '9')) and ...));
92 T result{};
93 for (const char c : { Cs... })
94 {
95 if (c == '.')
96 {
97 break;
98 }
99 if (c >= '0' and c <= '9')
100 {
101 result = result * T (10) + T (c - '0');
102 }
103 }
104 return result;
105 }
106
111 template <class T, char... Cs>
112 [[nodiscard]] constexpr auto
113 den () -> T
114 {
115 constexpr const std::array cs{ Cs... };
116 T result{};
117 auto i = 0u;
118 while (cs[i++] != '.')
119 {
120 }
121
122 for (auto j = i; j < sizeof...(Cs); ++j)
123 {
124 result += pow (T (10), sizeof...(Cs) - j) * T (cs[j] - '0');
125 }
126 return result;
127 }
128
133 template <class T, char... Cs>
134 [[nodiscard]] constexpr auto
135 den_size () -> T
136 {
137 constexpr const std::array cs{ Cs... };
138 T i{};
139#if defined(__GNUC__)
140#pragma GCC diagnostic push
141#pragma GCC diagnostic ignored "-Wconversion"
142#endif
143 while (cs[i++] != '.')
144#if defined(__GNUC__)
145#pragma GCC diagnostic pop
146#endif
147 {
148 }
149
150 return T (sizeof...(Cs)) - i + T (1);
151 }
152
157 template <class T, class Value_T>
158 [[nodiscard]] constexpr auto
159 den_size (Value_T value) -> T
160 {
161 constexpr auto precision = Value_T (1e-7);
162 T result{};
163 Value_T tmp{};
164 do
165 {
166 value *= 10;
167#if defined(__GNUC__)
168#pragma GCC diagnostic push
169#if !defined(__clang__) // GCC only
170#pragma GCC diagnostic ignored "-Warith-conversion"
171#endif
172#if defined(__clang__)
173#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion"
174#endif
175#endif
176 tmp = value - T (value);
177#if defined(__GNUC__)
178#pragma GCC diagnostic pop
179#endif
180 ++result;
181 }
182 while (tmp > precision);
183
184 return result;
185 }
186
187 } // namespace math
188
189 // --------------------------------------------------------------------------
190} // namespace micro_os_plus::micro_test_plus
191
192#if defined(__GNUC__)
193#pragma GCC diagnostic pop
194#endif
195
196// ----------------------------------------------------------------------------
197
198#endif // __cplusplus
199
200// ----------------------------------------------------------------------------
201
202#endif // MICRO_TEST_PLUS_MATH_H_
203
204// ----------------------------------------------------------------------------
Local mathematical functions.
Definition math.h:49
constexpr auto abs(const T t) -> T
Generic absolute of any value.
Definition math.h:55
constexpr auto den() -> T
Compute the decimals of a number represented as an array of characters.
Definition math.h:113
constexpr auto pow(const T base, const Exp_T exp) -> T
Generic 'power of', to raise base to exponent (base ^ exp).
Definition math.h:75
constexpr auto num() -> T
Compute the integral value of a number represented as an array of characters.
Definition math.h:87
constexpr auto den_size() -> T
Compute the number of decimal places of a number represented as an array of characters.
Definition math.h:135
constexpr auto min_value(const T &lhs, const T &rhs) -> const T &
Generic minimum of two values.
Definition math.h:65