Changes between Initial Version and Version 2 of Ticket #5603
- Timestamp:
- 2019-07-25T18:01:51Z (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5603
- Property Owner changed from to
- Property Priority high → critical
- Property Status new → accepted
-
Ticket #5603 – Description
initial v2 4 4 `ErrorRecord.mo` 5 5 6 {{{ 6 {{{#!mo 7 7 record ErrorRecord 8 parameter Boolean someBool = true;9 final parameter Real someValue = 0.05;10 parameter SimpleRecord simpleRecord(recordValue1 = someValue - simpleRecord.recordValue2);11 final parameter Real[1] crash = if true then {1} else array(simpleRecord.recordValue2 for i in 1:1) annotation (Dialog(enable=someBool));8 parameter Boolean someBool = true; 9 final parameter Real someValue = 0.05; 10 parameter SimpleRecord simpleRecord(recordValue1 = someValue - simpleRecord.recordValue2); 11 final parameter Real[1] crash = if true then {1} else array(simpleRecord.recordValue2 for i in 1:1) annotation (Dialog(enable=someBool)); 12 12 end ErrorRecord; 13 13 }}} … … 16 16 `SimpleRecord.mo` 17 17 18 {{{ 18 {{{#!mo 19 19 record SimpleRecord 20 parameter Real recordValue1 = 1;21 parameter Real recordValue2 = 1;20 parameter Real recordValue1 = 1; 21 parameter Real recordValue2 = 1; 22 22 end SimpleRecord; 23 23 }}} … … 31 31 * line 5: Remove `someValue` from the definition of `recordValue` 32 32 33 Can you reproduce this behaviour? I'm using the new frontend with `d=newInst`33 Can you reproduce this behaviour? I'm using the new frontend with {{{-d=newInst}}} 34 34 35 35 Any help is much appreciated!