Changes between Version 7 and Version 8 of WritingEfficientMetaModelica
- Timestamp:
- 2014-10-15T12:26:58Z (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WritingEfficientMetaModelica
v7 v8 1 1 = Writing efficient, readable, and maintainable MetaModelica code = 2 2 3 In the bootstrapped compiler, together with the extended MetaModelica/Modelica things you can use there are some restrictions: 3 In the bootstrapped compiler, together with the extended MetaModelica/Modelica there are some simple rules to write efficient, readable, and maintainable code. 4 The RML implementation is a lot more restrictive and is an obstacle especially when it comes to writing readable and maintainable code. 5 4 6 == Use builtin functions and operators whenever possible == 5 7 Builtin functions have implementations that are better than you can achieve using MetaModelica code (for example: stringAppendList and stringDelimitList only use a single memory allocation).