Changes between Initial Version and Version 1 of Ticket #1552


Ignore:
Timestamp:
2014-09-30T12:55:51Z (11 years ago)
Author:
Martin Sjölund
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1552

    • Property Cc Frenkel TUD added; Jens Frenkel removed
  • Ticket #1552 – Description

    initial v1  
    11This should generate an alias-equation x = y
    2 {{{model M
     2{{{#!mo
     3model M
    34  Real x;
    45  Real y = sqrt(time);
    56algorithm
    67  x := y;
    7 end M;}}}
     8end M;
     9}}}
    810
    911The only thing we really need to think about is that the causality of the algorithm outputs should never change. It does not mean we cannot optimize them (we inline functions after all).