据我所知,不可能用有限的位数将所有数字表示为任意精度,并且不建议对浮点数进行天真的比较。但我希望如果我在一起添加许多数字,我添加它们的** order **并不重要。
为了测试这个预测,我创建了一个随机数矢量并计算它们的总和,然后对矢量进行排序并再次计算总和。很多时候,这两笔钱并不匹配!这是我的代码(包含在下面)的问题,一般是浮点运算的缺点,还是可能通过切换编译器等解决的问题?
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <random>
#include <vector>
double check_sum_depends_on_order(int seed)
{
// fill a vector with random numbers
std::vector<long double> v;
std::uniform_real_distribution<long double> unif(-1.,1.);
std::mt19937 rng(seed);
for (size_t i = 0; i < 1000; ++i)
{
v.push_back(unif(rng));
}
// copy this vector and then shuffle it
std::vector<long double> v2 = v;
std::sort(v2.begin(), v2.end());
// tot is running total for vector v, unsorted
// tot2 is running total for vector v2, sorted
long double tot = 0.0, tot2 = 0.0;
for (size_t i = 0; i < v.size(); ++i)
{
tot += v[i];
tot2 += v2[i];
}
// display result
// you can comment this if you do not want verbose output
printf("v tot\t= %.64Lf\n", tot);
printf("v2 tot\t= %.64Lf\n", tot2);
printf("Do the sums match (0/1)? %d\n\n", tot==tot2);
// return 1.0 if the sums match, and 0.0 if they do not match
return double(tot==tot2);
}
int main()
{
// number of trials
size_t N = 1000;
// running total of number of matches
double match = 0.;
for (size_t i = 0; i < N; ++i)
{
// seed for random number generation
int seed = time(NULL)*i;
match += check_sum_depends_on_order(seed);
}
printf("%f percent of random samples have matching sums after sorting.", match/double(N)*100.);
return 0;
}
答案 0 :(得分:7)
假设您有一个三位精度的十进制浮点类型。不太现实,但这是一个更简单的例子。
假设您有三个变量,a
,b
和c
。假设a
为1000
,b
和c
均为14
。
a + b
将为1014,向下舍入为1010. (a + b) + c
将为1024,向下舍入为1020.
b + c
将为28. a + (b + c)
将为1028,向上舍入为1030.