X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Ftests%2Frealtofloat.cpp;h=c475ea9e50bfe662307bd25e9c8558dcdbe7203e;hp=32ee20b230e5f5d563345058ed27757b538f6d05;hb=888817a67a9d840be66b52811b01eb77f10ff3e6;hpb=95dd47f77239fd252e0292dca21baac29513bc7b diff --git a/src/tests/realtofloat.cpp b/src/tests/realtofloat.cpp index 32ee20b..c475ea9 100644 --- a/src/tests/realtofloat.cpp +++ b/src/tests/realtofloat.cpp @@ -12,9 +12,9 @@ int main(int argc, char ** argv) { float test = test_min + (test_max-test_min)*((float)(rand() % (int)1e6)/1e6); Real real(test); - float thiserror = abs(test - real.value); + float thiserror = abs(test - Float(real)); error += thiserror; - Debug("#%u: |test %.20f - real %.20f| = %.20f [mean %f]", i, test, real.value, thiserror, error/(i+1)); + Debug("#%u: |test %.20f - real %.20f| = %.20f [mean %f]", i, test, Float(real), thiserror, error/(i+1)); } if (error/test_count > error_thresh)