Hi,
I seem to be running into a weird issue, and i'm trying to figure out if it's my machine or BMAX. The following code prints out:
25.000000000000000
25.000000000000000
0.00000000000000000
which is incorrect. can anyone please run this and confirm if their numbers look ok? I seem to be having precision problems here :/
I seem to be running into a weird issue, and i'm trying to figure out if it's my machine or BMAX. The following code prints out:
25.000000000000000
25.000000000000000
0.00000000000000000
which is incorrect. can anyone please run this and confirm if their numbers look ok? I seem to be having precision problems here :/
Local t1:Double = 25.0000002 Local t2:Double = 25.0000001 Local t3:Double t3 = t1 - t2 Print t1 Print t2 Print t3