Changes between Initial Version and Version 2 of Ticket #1469
- Timestamp:
- 2015-03-19T12:56:08Z (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1469
- Property Cc sjoelund.se, → sjoelund.se
- Property Component → Backend
-
Ticket #1469 – Description
initial v2 1 {{{class A 1 {{{#!mo 2 class A 2 3 constant Real x = 0; 3 4 Real r = x/x; 4 end A; }}}5 5 end A; 6 }}} 6 7 Gives 7 8 {{{r = 0.0}}} 8 9 Both wrong result, and no assertion added. 9 10 {{{class A10 {{{#!mo 11 class A 11 12 Real x = 0; 12 13 Real r = x/x; 13 end A; }}}14 14 end A; 15 }}} 15 16 Gives 16 17 {{{r = 1.0}}}