Free cookie consent management tool by TermsFeed Policy Generator

Changes between Initial Version and Version 1 of Ticket #3112


Ignore:
Timestamp:
03/09/21 07:58:06 (3 years ago)
Author:
gkronber
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3112 – Description

    initial v1  
    1 Models which produce a large range of outputs i.e. in the range 0 .. 10^10 lead to an overflow in CalculateAxisInterval in particular in methods RoundDown() and RoundUp(). Both methods cast to an int which limits the maximum range to the 2^31. The cast to integer is however not required as the code should be fine with floating point arithmetic.
     1Models which produce a large range of outputs i.e. in the range 0 .. 10^10^ lead to an overflow in CalculateAxisInterval in particular in methods RoundDown() and RoundUp(). Both methods cast to an int which limits the maximum range to the 2^31^. The cast to integer is however not required as the code should be fine with floating point arithmetic.