Changes between Initial Version and Version 1 of Ticket #2849


Ignore:
Timestamp:
2014-09-29T16:11:32Z (11 years ago)
Author:
Adrian Pop
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2849

    • Property Cc Adrian Pop added; adrian.pop@… removed
    • Property Owner changed from somebody to Adrian Pop
    • Property Status newaccepted
  • Ticket #2849 – Description

    initial v1  
    22In 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`.
    33
    4 {{{
     4{{{#!mo
    55package Bug
    66
     
    1414    inner outer output Real v;
    1515    Real y2;
    16     B out1;
     16    B b;
    1717  equation
    1818    y2 = v;
     
    2222    inner Real v;
    2323    Real y1;
    24     A io;
     24    A a;
    2525  equation
    2626    y1 = v;
    2727  end Test;
    28  
     28  
    2929end Bug;
    3030}}}