Changes between Initial Version and Version 2 of Ticket #1106
- Timestamp:
- 2012-08-17T11:33:35Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1106
- Property Cc AlexeyLebedev, → AlexeyLebedev
- Property Component Instantiation → Frontend
- Property Milestone → 1.9.0
-
Ticket #1106 – Description
initial v2 1 1 Consider the following example: 2 2 {{{ 3 3 model Test 4 4 … … 17 17 18 18 end Test; 19 19 }}} 20 20 It is translated into the following: 21 21 {{{ 22 22 fclass Test 23 23 parameter Real c.r = 0.1; … … 26 26 parameter Real c1.ra[1]; 27 27 end Test; 28 28 }}} 29 29 I.e., the modification ra[1]=0.2 is not instantiated for C1, though it is instantiated correctly for c. The modification r=0.1 is instatiated correctly both for C1 and c. It does not depend on whether r and ra are declared parameters or not.