Changes between Version 2 and Version 3 of Ticket #4808, comment 9
- Timestamp:
- 2018-03-21T12:39:11Z (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4808, comment 9
v2 v3 1 Note:2 1 {{{#!modelica 3 2 Complex k = Complex(r,0); 4 3 }}} 5 work agian4 work well !! 6 5 7 maybe `removeSmpleEquation` do same thing like `finnal parameter` in this case. 8 9 Possible, inlining `Complex.'constructor'.fromReal` can help 6 `removeSmpleEquation` can work here! 7 `Complex k = Complex(r) != Complex(r, 0)` 8 because `Complex(r)` is a function call. Possible inlining`Complex.'constructor'.fromReal` would be a great idea.