Commit 76fbe643 by Sharmadha Sainath Committed by nixonrodrigues

ATLAS-2423 : Min values for double and float

parent a02be15d
...@@ -91,11 +91,11 @@ define(['require'], function(require) { ...@@ -91,11 +91,11 @@ define(['require'], function(require) {
max: 9223372036854775807 max: 9223372036854775807
}, },
"float": { "float": {
min: 1.4E-45, min: -3.4028235E38,
max: 3.4028235E38 max: 3.4028235E38
}, },
"double": { "double": {
min: 4.9E-324, min: -1.7976931348623157E308,
max: 1.7976931348623157E308 max: 1.7976931348623157E308
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment