Skip to content

Correct Math.Min/MaxExtended values.

mme.patch

Present

const
	MinExtended  =  3.4e-4932;
	MaxExtended  =  1.1e+4932;

are wrong: they have binary forms

MinExtended = 0 000000000000001 1(.)000000101110001010110100111100000000101100011101001000101100100
MaxExtended = 0 111111111111110 1(.)110110010110001001010101110110101111111010110000111010111100001

Proposed constants

const
	MinExtended  =  3.36210314311209350626e-4932;
	MaxExtended  =  1.18973149535723176502e+4932;

give correct

MinExtended = 0 000000000000001 1(.)000000000000000000000000000000000000000000000000000000000000000
MaxExtended = 0 111111111111110 1(.)111111111111111111111111111111111111111111111111111111111111111

just like their Single / Double counterparts.

Edited by Rika
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information