blob: 8656f27981d52ef8e151f64fb1a6b9751aba5a6e (
plain) (
blame)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#include <cstdint>
namespace OpenVic::NumberUtils {
constexpr int64_t round_to_int64(float num) {
return (num > 0.0f) ? (num + 0.5f) : (num - 0.5f);
}
constexpr int64_t round_to_int64(double num) {
return (num > 0.0) ? (num + 0.5) : (num - 0.5);
}
constexpr uint64_t pow(uint64_t base, std::size_t exponent) {
uint64_t ret = 1;
while (exponent-- > 0) {
ret *= base;
}
return ret;
}
constexpr int64_t pow(int64_t base, std::size_t exponent) {
int64_t ret = 1;
while (exponent-- > 0) {
ret *= base;
}
return ret;
}
constexpr uint64_t sqrt(uint64_t n) {
uint64_t x = n;
uint64_t c = 0;
uint64_t d = 1ull << 62;
while (d > n)
d >>= 2;
for (; d != 0; d >>= 2) {
if (x >= c + d) {
x -= c + d;
c = (c >> 1) + d;
} else {
c >>= 1;
}
}
//round up
if (x > 0) {
c += 1;
}
return c;
}
constexpr bool is_power_of_two(uint64_t n) {
return n > 0 && (n & (n - 1)) == 0;
}
}
|