Given an integer I would like to produce a unique floating point number in the interval [0,1]. (this number will be used as id).
The problem I found with all functions I have thought about, is that they encounter duplicates before running out of integer values.
For example if f(a:int):float = 0.a then f(16000) = 0.16 and f(16001) = 0.16001. But since it is floating point, 0.16 and 0.16001 may be represented the same.
In other words, I need a function that produce not only unique numbers, but also numbers that are represented uniquely (at least forthe C++ integer domain).
I know the answer is dependent on the size of integer and floating point in a specific environment, but if you can give an example for specific sizes it will still be helpful.
As someone else pointed out you can simply cast an
intto afloatof the same size to get a unique float (with some post-filtering forNaNand-0andInf). However, that will not meet your requirement of being in [0,1]. In fact, you can use that relation to show that there are not enough floats in [0,1] to represent the set of integers. If you usedoublethen the mantissa is easily large enough for a 32-bit int and an expression likeI / (double)INT_MAXshould be sufficient (obviously allow for unsignedness if you need to).