S2OJ/judger/uoj_judger/builtin/checker/rcmp9.cpp

33 lines
778 B
C++
Raw Normal View History

2016-07-18 16:39:37 +00:00
#include "testlib.h"
#include <cmath>
using namespace std;
const double EPS = 1E-9;
int main(int argc, char * argv[])
{
setName("compare two sequences of doubles, max absolute or relative error = %.10lf", EPS);
registerTestlibCmd(argc, argv);
int n = 0;
double j, p;
while (!ans.seekEof())
{
n++;
j = ans.readDouble();
p = ouf.readDouble();
if (!doubleCompare(j, p, EPS))
{
quitf(_wa, "%d%s numbers differ - expected: '%.7lf', found: '%.7lf', error = '%.7lf'",
n, englishEnding(n).c_str(), j, p, doubleDelta(j, p));
}
}
if (n == 1)
quitf(_ok, "found '%.9lf', expected '%.9lf', error '%.9lf'", p, j, doubleDelta(j, p));
quitf(_ok, "%d numbers", n);
}