6#ifndef ALT_INTEGRATION_INCLUDE_VERIBLOCK_REWARDS_POPREWARDS_BIGDECIMAL_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_REWARDS_POPREWARDS_BIGDECIMAL_HPP_
10#include <veriblock/pop/arith_uint256.hpp>
15struct PopRewardsBigDecimal {
16 static const uint32_t decimals = 100000000;
17 ArithUint256 value = 0;
19 PopRewardsBigDecimal() =
default;
21 PopRewardsBigDecimal(uint64_t b) : value(ArithUint256(b) * decimals) {}
22 PopRewardsBigDecimal(
const ArithUint256& b) : value(b * decimals) {}
23 PopRewardsBigDecimal(
double b) : value((uint64_t)(b * decimals)) {}
25 std::string toPrettyString()
const {
26 auto decimalFraction = getDecimalDoubleFraction();
27 double outValue = (double)getIntegerFraction() + decimalFraction;
28 return format(
"BigDecimal{{{}}}", outValue);
31 PopRewardsBigDecimal& operator+=(
const PopRewardsBigDecimal& b) {
36 PopRewardsBigDecimal& operator-=(
const PopRewardsBigDecimal& b) {
41 PopRewardsBigDecimal& operator*=(
const PopRewardsBigDecimal& b) {
47 PopRewardsBigDecimal& operator/=(
const PopRewardsBigDecimal& b) {
53 uint64_t getIntegerFraction()
const {
return (value / decimals).getLow64(); }
54 uint64_t getDecimalFraction()
const {
55 ArithUint256 integerFraction = getIntegerFraction();
56 integerFraction *= decimals;
57 return (value - integerFraction).getLow64();
60 double getDecimalDoubleFraction()
const {
61 auto temp = (double)getDecimalFraction();
62 return temp / decimals;
65 friend inline const PopRewardsBigDecimal operator+(
66 const PopRewardsBigDecimal& a,
const PopRewardsBigDecimal& b) {
67 return PopRewardsBigDecimal(a) += b;
69 friend inline const PopRewardsBigDecimal operator-(
70 const PopRewardsBigDecimal& a,
const PopRewardsBigDecimal& b) {
71 return PopRewardsBigDecimal(a) -= b;
73 friend inline const PopRewardsBigDecimal operator*(
74 const PopRewardsBigDecimal& a,
const PopRewardsBigDecimal& b) {
75 return PopRewardsBigDecimal(a) *= b;
77 friend inline const PopRewardsBigDecimal operator/(
78 const PopRewardsBigDecimal& a,
const PopRewardsBigDecimal& b) {
79 return PopRewardsBigDecimal(a) /= b;
81 friend inline bool operator>(
const PopRewardsBigDecimal& a,
82 const PopRewardsBigDecimal& b) {
83 return a.value.compareTo(b.value) > 0;
85 friend inline bool operator<(
const PopRewardsBigDecimal& a,
86 const PopRewardsBigDecimal& b) {
87 return a.value.compareTo(b.value) < 0;
89 friend inline bool operator>=(
const PopRewardsBigDecimal& a,
90 const PopRewardsBigDecimal& b) {
91 return a.value.compareTo(b.value) >= 0;
93 friend inline bool operator<=(
const PopRewardsBigDecimal& a,
94 const PopRewardsBigDecimal& b) {
95 return a.value.compareTo(b.value) <= 0;
97 friend inline bool operator==(
const PopRewardsBigDecimal& a,
98 const PopRewardsBigDecimal& b) {
99 return a.value.compareTo(b.value) == 0;