Why have Apache commons-math3
based it's Fraction
on int
type???
Are there any reasons to use int
instead of long
? Do we have some performance gains here? Aren't long
s process at the same speed as int
s on modern CPUs?
I think we got only unneeded limitations from this decision.
Please correct me if I am mistaking.