﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1104	Scientific number, addition failer. (x>2^53)	anonymous		"{{{
; Scientific number, addition failer. (x>2^53)
; after value 2^53 and up.
Local $i,$j,$v,$c=1
$v = 9007199254740992 ; int(2^53)
For $i = ($v-2)*1e0 to ($v+2)*1e0
	If ($i<>$j) Then
		ConsoleWrite('> ')
	Else
		ConsoleWrite('- ')
		$c = 0
	EndIf
	ConsoleWrite($i&', '&int($i)&'.'&@CRLF)
	If not $c Then ExitLoop
	$j = $i
Next
;~ > 9.00719925474099e+015, 9007199254740991.
;~ > 9.00719925474099e+015, 9007199254740992.
;~ > 9.00719925474099e+015, 9007199254740993.
;~ - 9.00719925474099e+015, 9007199254740993.
}}}"	Bug	closed		AutoIt	3.3.1.1	None	No Bug	Scientific addition	
