veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
math.hpp
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef VERIBLOCK_POP_CPP_MATH_HPP
7#define VERIBLOCK_POP_CPP_MATH_HPP
8
9#include <cstdint>
10
11namespace altintegration {
12namespace progpow {
13
14uint32_t popcount(uint32_t v);
15uint32_t clz(uint32_t v);
16uint32_t mul_hi(uint32_t a, uint32_t b);
17
18} // namespace progpow
19} // namespace altintegration
20
21#endif // VERIBLOCK_POP_CPP_MATH_HPP
Defines logging helpers.
Definition: block.hpp:14