in reply to Re: Preferred Methods
in thread Preferred Methods

The module Math::FixedPrecision seems promising, but unfortunatly it rounds 0.50 to 0 rather than 1.

as far as i'm aware, rounding 'rules' are just conventions. they're only called rules because they provide a set of instructions.

the method i was taught was that in cases of .5 exactly, the number would round to the nearest even number. so, 0.5000000000001 rounds to 1, 0.5 rounds to 0.

~Particle