Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Ruby
Major Addition Bug?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="Jeff Mitchell, post: 4430424"] Just a nitpick: this should be class Float def ==(other) abs(self - other) < 0.000000000001 end end Coming from a background in mathematics, I have personal affection for: class Float def within?(epsilon, other) abs(self - other) < epsilon end end EPSILON = 1e-8 # ... if a.within?(EPSILON, b) # ... I read this as, "if a is within epsilon of b" -- a common phrase in analysis. [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Ruby
Major Addition Bug?
Top