Changes between Version 9 and Version 10 of WritingEfficientMetaModelica
- Timestamp:
- 2014-10-15T12:31:54Z (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WritingEfficientMetaModelica
v9 v10 13 13 // List reduction, creates 1 list 14 14 list(2*x*y for x guard x>0 in lst); 15 // RML style, creates 6lists including the listReverse operations15 // RML style, creates 4 lists including the listReverse operations 16 16 List.map1(List.filter(lst, isPositive), realMul, 2.0*y); 17 17 }}}