5

我怎样才能做一个rational_cast<int64_t>四舍五入?

目前我正在做这样的黑客攻击:

boost::rational<int64_t> pts = ..., time_base = ...;
int64_t rounded = std::llround(boost::rational_cast<long double>(pts / time_base)); 

但我希望能够在不涉及浮点的情况下“正确”地做到这一点。

4

1 回答 1

1

舍入本质上是有损的。

想到的最快的破解方法是简单地使用内置行为(即floor-ing 或trunc-ing 结果)并偏移一半:

Live On Coliru

#include <iostream>
#include <fstream>
#include <boost/rational.hpp>

int main() {
    using R = boost::rational<int64_t>;
    for (auto den : {5,6}) {
        std::cout << "---------\n";
        for (auto num : {1,2,3,4,5,6}) {
            R pq(num, den);
            std::cout << num << "/" << den << " = " << pq << ": " 
                      << boost::rational_cast<int64_t>(pq + R(1,2)) << "\n";
        }
    }
}

印刷

---------
1/5 = 1/5: 0
2/5 = 2/5: 0
3/5 = 3/5: 1
4/5 = 4/5: 1
5/5 = 1/1: 1
6/5 = 6/5: 1
---------
1/6 = 1/6: 0
2/6 = 1/3: 0
3/6 = 1/2: 1
4/6 = 2/3: 1
5/6 = 5/6: 1
6/6 = 1/1: 1
于 2017-10-25T12:54:45.723 回答