April 18, 2013 [Issue 9955] New: std.math.feqrel for numbers close to zero | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=9955 Summary: std.math.feqrel for numbers close to zero Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Severity: normal Priority: P2 Component: Phobos AssignedTo: nobody@puremagic.com ReportedBy: bearophile_hugs@eml.cc --- Comment #0 from bearophile_hugs@eml.cc 2013-04-18 04:46:11 PDT --- I think feqrel is not working well when numbers are close to 0.0: import std.stdio: writeln; import std.math: feqrel; void main() { feqrel(1.000000000000001, 1.0).writeln; feqrel(1.00000000001, 1.0).writeln; feqrel(1.1, 1.0).writeln; feqrel(0.000000000000001, 0.0).writeln; feqrel(0.00000000001, 0.0).writeln; feqrel(0.1, 0.0).writeln; } Prints, dmd 2.063alpha: 50 37 4 0 0 0 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
April 18, 2013 [Issue 9955] std.math.feqrel for numbers close to zero | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=9955 Don <clugdbug@yahoo.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #1 from Don <clugdbug@yahoo.com.au> 2013-04-18 06:11:07 PDT --- No, it's correct. They have no equal bits. What you have is something like this: 0.00000000000000100000000000000000000 0.000000000000000000000000000000000000000000000000000000000000000000000 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation