Changes between Initial Version and Version 2 of Ticket #1709
- Timestamp:
- 2012-06-19T05:43:40Z (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1709
- Property Cc sjoelund.se, adrpo, perost, petar, sjoelund.se → sjoelund.se, adrpo, perost, petar
- Property Component → Backend
- Property Type defect → enhancement
-
Ticket #1709 – Description
initial v2 1 1 MSL contains constants >31-bit, and we could support them using either an arbitrary-size data-structure or simply 128-bit or something. This would reduce the need for some ad-hoc Integer to Real conversions that we perform today: 2 {{{model M 2 {{{ 3 model M 3 4 Integer i = 100000000000 * 100000000000; 4 end M;}}} 5 end M; 6 }}} 5 7 6 8 Gives after type-checking: 7 {{{class M 9 {{{ 10 class M 8 11 Integer i = 1e+22; 9 end M;}}} 12 end M; 13 }}}