vote up 1 vote down star

Hello!

Does anybody know if there are any? I would be interested in a .net floating point type with the range of a double (or greater) combined with the precision of a decimal (or greater). Are there any planned? Anybody interested in speculating as to the usefulness or practicality of a new high-precision, high-range floating point type on x64?

flag

1 Answer

vote up 1 vote down check

x64 still has the same core .NET libraries as x86 (although there may be some internal changes, especially in the CLI itself). So no: x64 doesn't get anything extra.

There is BigInteger in 4.0, though.

link|flag
Thanks for the answer. What's your opinion though: do you think that a new high-precision, high-range floating point type would be both feasible and useful for those working on the x64 platform on .net? – Shunyata Kharg Apr 30 at 9:28
1  
@Shunyata: x86 floating point supports wider types that .NET (or VC++) exposes as it is. More likely (hopefully in .NET 4) is some BigFloat for arbitrary precision. – Richard Apr 30 at 9:38
IMO, that is quite a specialized requirement... it would be nice if they were there, but we've done OK without them so far. I expect you can pick up some arbitrary precision libraries online. – Marc Gravell Apr 30 at 9:56
@Richard: Thanks for the info. I would welcome some sort of BigFloat in x86, I just thought that in x64 the performance overhead would be lower for such a beast. – Shunyata Kharg Apr 30 at 9:57
To have better performance, it would need to use new CLI primitives in the implementation... AFAIK, that isn't happening. – Marc Gravell Apr 30 at 10:35
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.