Changes between Version 7 and Version 8 of WritingEfficientMetaModelica


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

--

Legend:

Unmodified
Added
Removed
Modified
  • WritingEfficientMetaModelica

    v7 v8  
    11= Writing efficient, readable, and maintainable MetaModelica code =
    22
    3 In the bootstrapped compiler, together with the extended MetaModelica/Modelica things you can use there are some restrictions:
     3In the bootstrapped compiler, together with the extended MetaModelica/Modelica there are some simple rules to write efficient, readable, and maintainable code.
     4The RML implementation is a lot more restrictive and is an obstacle especially when it comes to writing readable and maintainable code.
     5
    46== Use builtin functions and operators whenever possible ==
    57Builtin functions have implementations that are better than you can achieve using MetaModelica code (for example: stringAppendList and stringDelimitList only use a single memory allocation).