Changes between Version 9 and Version 10 of WritingEfficientMetaModelica


Ignore:
Timestamp:
2014-10-15T12:31:54Z (10 years ago)
Author:
Martin Sjölund
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WritingEfficientMetaModelica

    v9 v10  
    1313// List reduction, creates 1 list
    1414list(2*x*y for x guard x>0 in lst);
    15 // RML style, creates 6 lists including the listReverse operations
     15// RML style, creates 4 lists including the listReverse operations
    1616List.map1(List.filter(lst, isPositive), realMul, 2.0*y);
    1717}}}