Changes between Initial Version and Version 1 of Ticket #2849
- Timestamp:
- 2014-09-29T16:11:32Z (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2849
- Property Cc added; removed
- Property Owner changed from to
- Property Status new → accepted
-
Ticket #2849 – Description
initial v1 2 2 In the following model (also attached) the inner variable `v` declared in model `Test` is assigned to in model `B` where it is declared as `outer output`. `B` is instantiated in `A` and `A` is instantiated in `Test`. In model `A` variable `v` is declared as `inner outer output`. 3 3 4 {{{ 4 {{{#!mo 5 5 package Bug 6 6 … … 14 14 inner outer output Real v; 15 15 Real y2; 16 B out1;16 B b; 17 17 equation 18 18 y2 = v; … … 22 22 inner Real v; 23 23 Real y1; 24 A io;24 A a; 25 25 equation 26 26 y1 = v; 27 27 end Test; 28 28 29 29 end Bug; 30 30 }}}