Skip to content

Instantly share code, notes, and snippets.

@tyabu12
Created April 19, 2017 02:48
Show Gist options
  • Save tyabu12/81f8edadd19b5d8801983c13526695e4 to your computer and use it in GitHub Desktop.
Save tyabu12/81f8edadd19b5d8801983c13526695e4 to your computer and use it in GitHub Desktop.
x = 1.000000e+00, y = 1.000000e-40, z = -1.000000e-40
round NearestTiesToEven:
x + y = 1.000000000000000000e+00
x + z = 1.000000000000000000e+00
round ToZero:
x + y = 1.000000000000000000e+00
x + z = 9.999999999999998890e-01
round Up:
x + y = 1.000000000000000222e+00
x + z = 1.000000000000000000e+00
round Down:
x + y = 1.000000000000000000e+00
x + z = 9.999999999999998890e-01
x = -1.000000e+00, y = 1.000000e-40, z = -1.000000e-40
round NearestTiesToEven:
x + y = -1.000000000000000000e+00
x + z = -1.000000000000000000e+00
round ToZero:
x + y = -9.999999999999998890e-01
x + z = -1.000000000000000000e+00
round Up:
x + y = -9.999999999999998890e-01
x + z = -1.000000000000000000e+00
round Down:
x + y = -1.000000000000000000e+00
x + z = -1.000000000000000222e+00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment