December 2009 Commit Log

Number of Commits:
111
Number of Active Developers:
11
sjoelund.se 2009-12-22 17:03 Rev.: 4729

- partialInstExtendsList is now used (copy/paste made partialInstClass use the regular instExtendsList instead; it was probably just a little bit slower).
- Inst.classdefElts2 now returns 2 lists. One with only constants so these can be explicitly instantiated (this was commented out due to breaking ClassExtends3.mo).
- Inst.instElement now tries to update the mod one last time before instVar (this is because the mod that comes from the baseclass was untyped).

76 lines of code changed in 1 file:

sjoelund.se 2009-12-22 13:43 Rev.: 4728

- Removed unused input from Mod.lookupIdxModification2

19 lines of code changed in 1 file:

sjoelund.se 2009-12-21 14:52 Rev.: 4727

- Mod.elabModValue now won't try to ceval expression dependent on variables (they should always fail).
- This makes debugging easier since expressions that aren't meant to be ceval'ed won't appear in failtraces.
- Static.elabExp now generates C_CONST for MetaModelica NONE, NONE() and {}.
- Static.elabExp will generate correct const-ness for SOME(exp) and list(e1,..,,en).

19 lines of code changed in 2 files:

bjozac 2009-12-21 13:48 Rev.: 4726

Some updates for Cevalfunc, it works better but still not perfect.

447 lines of code changed in 4 files:

adrpo 2009-12-21 09:44 Rev.: 4725

- implemented DAEUtil.selectBranches that is used to select the if equation branches
if the conditions are Boolean literals (true/false). This is needed because
Connections.isRoot is replaced with true/false at the end of instantiation.

47 lines of code changed in 1 file:

sjoelund.se 2009-12-21 09:16 Rev.: 4724

- Re-added MatchCaseInteractive3.mos to testsuite
- Added some changes to the external Java testsuite

3 lines of code changed in 3 files:

adrpo 2009-12-21 08:18 Rev.: 4723

- ConnectionGraph.mo:
+ faster handling of overconstrained connections when the connection graph is empty: no DAE walk!
+ handle expression: (NOT Connections.isRoot(A))
+ gather operations into one new function: ConnectionGraph.handleOverconstrainedConnections
which is called from Inst module when we reach the instantiation of the top level class

- Inst.mo:
+ handle overconstrained connections also in Inst.instantiateClass and Inst.instClassInProgram
(was only in instProgram before)
+ removed some old commented out debug prints.

- Static.mo
+ handle the case where the instance function is made of parts instead of being derived (short
class definition)

- Util.mo
+ implemented listAppendNoCopy that deals with empty lists using
special cases by not generating a new copy of the non-empty list.
+ the normal listAppend(L1, L2) will ALWAYS generate a copy of the first parameter (L1)

- Env.mo
+ trivial comment change

- DAEUtil.mo
+ removed extra parentheses around named pattern as it doesn't parse using omc

- DAELow.mo
+ DAELow.COMPLEX_EQUATION describes equations of the form record=functionCall(...).
+ more handling of DAELow.COMPLEX_EQUATION so at least checkModel works.
+ more is needed so that DAELow.COMPLEX_EQUATION works in simulation

512 lines of code changed in 7 files:

ricli576 2009-12-20 12:28 Rev.: 4722

- Implemented extraction and generation of linear-systems and nonlinear
equations

2085 lines of code changed in 5 files:

sjoelund.se 2009-12-18 13:30 Rev.: 4721

- Changed SCode Option<Absyn.Path> baseClassPath to Option<tuple<Absyn.Path,Mod>>.
- When extending a class, we also add the SCode.Mod to the baseclass, so we instantiate the correct class later on.
- Added a testcase that sets the dimensions of a matrix in the extends modifications.

115 lines of code changed in 8 files:

ricli576 2009-12-18 10:43 Rev.: 4720

- Extracted more algorithm equations
- Made debug message easier to notice in compiler error message output

24 lines of code changed in 4 files:

ricli576 2009-12-18 09:49 Rev.: 4719

- Fixed spelling error in ZEROCROSSING generation
- Updated template scalarLhsCref
- Fixed type bug in range-for generation
- Added template daeExpCrefRhs
- Added support for binary operations: ADD_ARR, SUB_ARR, and DIV_ARRAY_SCALAR
- Changed ASUB template case to match how Codegen works
- Changed the way relations are generated: non-simulation specific relations
are now generated in simulation context

3386 lines of code changed in 5 files:

sjoelund.se 2009-12-17 17:44 Rev.: 4718

- Fix the name generated by ClassExtends2.mo (was ClassExtends1)

1 lines of code changed in 1 file:

sjoelund.se 2009-12-17 17:43 Rev.: 4717

- When instantating a partial package, force partial instantation instead.
- When partially instantiating a partial class, strip out all non-package elements.

40 lines of code changed in 2 files:

sjoelund.se 2009-12-17 17:42 Rev.: 4716

- Moved around in Ceval.mo to only generate a failtrace if all ways to call a function fail (that is, after we try the interactive ones)

33 lines of code changed in 1 file:

perost 2009-12-17 17:00 Rev.: 4715

Added warning when trying to apply non-array modification to array component
without 'each'.

18 lines of code changed in 2 files:

perost 2009-12-17 17:00 Rev.: 4714

Replaced error message with fail trace.

3 lines of code changed in 1 file:

AlexeyLebedev 2009-12-17 15:52 Rev.: 4713

Fix for the bug:
http://openmodelica.ida.liu.se:8080/cb/issue/1074?navigation=true

19 lines of code changed in 2 files:

sjoelund.se 2009-12-17 13:36 Rev.: 4712

- Fixed Static.elabBuiltinDiagonal - real arrays will now generate RCONST(0) instead of ICONST(0)

11 lines of code changed in 1 file:

ricli576 2009-12-16 23:06 Rev.: 4708

- Changed DAE.ComponentRef to SimVar in zeroCrossingsNeedSave

50 lines of code changed in 5 files:

ricli576 2009-12-16 22:44 Rev.: 4707

- Refactored how types are generated
- Updated template for CAST

3128 lines of code changed in 3 files:

ricli576 2009-12-16 16:04 Rev.: 4706

- Fixed a bug (hopefully correctly) where too many AddEvents were generated
- Implemented STMT_WHILE
- Implemented STMT_ASSERT
- Implemented STMT_WHEN
- Implemented LUNARY
- Implemented MATRIX
- Implemented special build-in functions promote and transpose

3120 lines of code changed in 5 files:

sjoelund.se 2009-12-16 15:10 Rev.: 4705

- Fixed testcases ClassExtends{1,2,3}.mo

1 lines of code changed in 1 file:

bjozac 2009-12-16 14:49 Rev.: 4704

Changed deriving function to be fullyQualified.

17 lines of code changed in 2 files:

adrpo 2009-12-16 04:45 Rev.: 4703

- removed the not needed extra parentheses (these only parse in mmc but not in omc).

3 lines of code changed in 1 file:

adrpo 2009-12-16 04:16 Rev.: 4702

- updated OpenModelica back-end to agree with the new DAE.FUNCTION definition.
- 3 tests (testsuite/mofiles/ClassExtends*) fail due to changes in Inst.partialInstClassdef

106 lines of code changed in 8 files:

bjozac 2009-12-15 19:56 Rev.: 4701

Changed DAE.FUNCTION to a more generic structure for external and normal function as well as derivatives of functions. Construct in front end derivative information for functions.

Inline'ing changed a bit. Now a record rather then a boolean.
Reverted some inst.partialinstclassdef stuff that martin did, was not compatible with all functioncalls.

1303 lines of code changed in 17 files:

perost 2009-12-15 17:59 Rev.: 4700

Added initialization of record members by rewriting generateAllocOutvar, adding
generateAllocRecord and modifying generateAllocOutvars and
generateAllocOutvarsExt in Codegen.

106 lines of code changed in 1 file:

ricli576 2009-12-15 17:39 Rev.: 4699

- Changed array lists: stateEquations became the two lists allEquations and
stateContEquations
- Ignored when equations in equation lists
- Changed to simulation context in a few places
- Used context in more places
- Generate for loops
- Added templates typeStrFromExp and typeStrFromOp
- Generate some asubs

3714 lines of code changed in 5 files:

sjoelund.se 2009-12-15 13:59 Rev.: 4698

- Added boolean inline to DAE.T_FUNCTION.
- Changed elabCallArgs to use this flag instead of doing an extra lookupClass (which causes infinite recursion in Modelica.Media models).
- Removed instElementList from partialInstClassdef (the classdefs are added to the environment and may be looked up anyway).
- Added testcase ClassExtends3.mo.

596 lines of code changed in 18 files:

Frenkel TUD 2009-12-15 13:33 Rev.: 4697

- enumerations works now
- ToDo: replaceable enumerations in models with equations/algorithms containig explicit
enumeration literals does not work because the componentRef have to be replaced
and the numbers of enumeration litterals from both enumerations should be equal
- ToDo: do not replace enumeration litteral with it value inside loops
- update workplan-status

37 lines of code changed in 3 files:

bjozac 2009-12-15 12:52 Rev.: 4696

Added System.addToRoots to SCode.translateAbsyn2SCode.
Also corrected crefEqual from commit #4678. Now it also works on DAE.CREF_IDENT()

34 lines of code changed in 2 files:

stebr461 2009-12-15 10:17 Rev.: 4695

- Added tests for inline functions
These tests are not run automatically

0 lines of code changed in 5 files:

Frenkel TUD 2009-12-15 01:07 Rev.: 4694

- enumeration as loop var work now in algorithm sections
- ToDo do not replace the enumeration literals with it integer value
- start work on replaceable enumeration

73 lines of code changed in 4 files:

ricli576 2009-12-14 20:07 Rev.: 4693

- Extracted algorithm equations to templates
- Added context to templates

1630 lines of code changed in 5 files:

ricli576 2009-12-14 14:39 Rev.: 4692

- Changed variable name type from String to DAE.ComponentRef
- Handle array variables
- Added arrayCref to SIMVAR to support #defines of arrays
- Extended algStatement template to handle some array operations
- Implemented daeExpSize template
- Temporarily disabled generation of function record declarations
- Cleaned up some code

2608 lines of code changed in 5 files:

sjoelund.se 2009-12-14 13:28 Rev.: 4691

- Merged instClass partial function case with the generic case.

71 lines of code changed in 3 files:

sjoelund.se 2009-12-14 13:02 Rev.: 4690

- Added missing operators to Exp.typeofOp

9 lines of code changed in 1 file:

petfr 2009-12-14 08:36 Rev.: 4689

Update of Adrians, Martins, Pers time log until moring 091214. Fix of summation error for MultiBody spent days. Other minor edits.

0 lines of code changed in 1 file:

adrpo 2009-12-14 07:14 Rev.: 4688

- calling an function via an instance (world.gravityAcceleration) now WORKS!
- Static.elabCallArgs intercepts the world.gravityAcceleration, and then
copies the function (World.gravityAcceleration) and dependencies (World.gravityAccelerationTypes)
from World into the current scope with new name that prefixed by the instance name:
"world.gravityAcceleration" and "world.gravityAccelerationTypes"

71 lines of code changed in 1 file:

adrpo 2009-12-14 05:40 Rev.: 4687

- testsuite/mosfiles/Enum8.mos fails due to changes in Codegen.mo (to be fixed later).

1 lines of code changed in 1 file:

adrpo 2009-12-14 05:39 Rev.: 4686

- Inst.addCachedEnv moved to Env.addCachedEnv (is more natural to be in Env)
- Static.transformModificationsToNamedArguments (does what the long name say)
- Lookup.lookupType2 reordered cases
- Codegen - generate modelica_integer and integer for enumeration type.
testsuite/mosfiles/Enum8.mos will fail because of this. To be fixed later.
- more comments in Inst
- Exp.crefEqual was checking for equality:
+ by comparing idents/subscripts by using
equality(n1, n2) instead of true = stringEqual(n1, n2)
+ as a last resort (last case) by *converting*
the crefs into strings and doing string comparison
on them??!!
+ I changed all equality(n1, n2) into true = stringEqual(n1, n2)
and improved the last case to handle stringified crefs better:
CREF_QUAL(x, CREF_IDENT(y)) will be equal to CREF_IDENT(x.y).

- Inst.isInnerOuterMatch now compares the last
indents from crefs before doing the Exp.crefEqual.
- Inst.propagateAttributes is now walking the DAE once
- Changed the walking the DAE two times:
innerVars =
DAEUtil.getAllMatchingElements(inDae,DAEUtil.isInnerVar);
outerVars =
DAEUtil.getAllMatchingElements(inDae,DAEUtil.isOuterVar);
To walking the DAE once:
(innerVars,outerVars) =
DAEUtil.findAllMatchingElements(
inDae,DAEUtil.isInnerVar,DAEUtil.isOuterVar);
- Inst.instClassIn and Inst.partialInstClassIn are now cached (only one input/result for now)
+ this needs to be developed more as the cache should be cleared after instantiation of
the top class is done.

1510 lines of code changed in 7 files:

adrpo 2009-12-14 05:20 Rev.: 4685

- added DAEUtil.findAllMatchingElements to split DAE into inner/outer variables
in ONE walk.

55 lines of code changed in 1 file:

adrpo 2009-12-14 05:18 Rev.: 4684

- added DAELow.COMPLEX_EQUATION which is populated from
DAE.COMPLEX_EQUATION and DAE.INITIAL_COMPLEX_EQUATION
- no handling of DAELow.COMPLEX_EQUATION yet.

58 lines of code changed in 1 file:

adrpo 2009-12-14 05:14 Rev.: 4683

- added unsafe external functions in System.mo:
+ System.listAppendUnsafe (not used)
+ System.addToRoots and System.getFromRoots to implement global variables.

168 lines of code changed in 2 files:

adrpo 2009-12-14 05:12 Rev.: 4682

- replaced tabs with 2 spaces to correctly display code in any editor.

122 lines of code changed in 1 file:

adrpo 2009-12-14 04:56 Rev.: 4681

- handle DAE.COMPLEX_EQUATION and DAE.INITIAL_COMPLEX_EQUATION in VarTransform.applyReplacementsDAE
- if no case in VarTransform.applyReplacementsDAE matched just move to next, DO NOT FAIL.
Modelica.Mechanics.MultiBody.Elementary.DoublePendulum did not flatten because
VarTransform.applyReplacementsDAE failed.
- Use DAE.ET_OTHER instead of DAE.ET_REAL in VarTransform.applyReplacementsDAE as otherwise the
correct type is not copied from the replaced expression.

68 lines of code changed in 1 file:

Frenkel TUD 2009-12-14 00:51 Rev.: 4680

- work on enumerations for loops in algorithm sections
- DoTo: for e in Enum.e1 : Enum.en
- bufgix SimCodegen: print enumeration as integer for T_Complex ComponentRefs
- use modifiers like start, fixed, ... for enumerations and derived enumerations

88 lines of code changed in 4 files:

Frenkel TUD 2009-12-13 01:41 Rev.: 4679

- fix a bug in Inst.instBooleanClass
- redisign of enumeration instantiation

82 lines of code changed in 2 files:

adrpo 2009-12-12 14:47 Rev.: 4678

- faster Exp.crefEqual

91 lines of code changed in 1 file:

AlexeyLebedev 2009-12-11 17:57 Rev.: 4677

Updated status

0 lines of code changed in 1 file:

perost 2009-12-11 17:12 Rev.: 4676

Added status estimate for DLL/SO-generation.

0 lines of code changed in 1 file:

sjoelund.se 2009-12-11 16:54 Rev.: 4675

- updated workplan status

0 lines of code changed in 1 file:

adrpo 2009-12-11 16:06 Rev.: 4674

- updated status since 2009-11-06

0 lines of code changed in 1 file:

sjoelund.se 2009-12-11 12:12 Rev.: 4673

- Add Makefile dependencies to Compiler/runtime/dynload.o

4 lines of code changed in 2 files:

sjoelund.se 2009-12-11 10:29 Rev.: 4672

- Disable failtraces that are not useful.

2 lines of code changed in 1 file:

sjoelund.se 2009-12-11 09:21 Rev.: 4671

- Updated partialInstExetendsList to do the same thing as instExtendsList.
- Changed splitElts, listSelect in those functions to use a new splitClassExtendsElts instead (for performance).

32 lines of code changed in 1 file:

adrpo 2009-12-11 00:21 Rev.: 4670

- added testmeta target

4 lines of code changed in 1 file:

adrpo 2009-12-10 23:52 Rev.: 4669

- implemented SCodeUtil.translateSCodeModToNArgs which translates *derived* class
modifications into named function arguments and also prefixes only the CREF_IDENTs
from the binding expressions with the given prefix.

279 lines of code changed in 1 file:

adrpo 2009-12-10 23:47 Rev.: 4668

- small code formatting and a bit more explaining

16 lines of code changed in 1 file:

adrpo 2009-12-10 23:43 Rev.: 4667

- fixed a typo.

2 lines of code changed in 1 file:

adrpo 2009-12-10 23:42 Rev.: 4666

- use $OPENMODELICAHOME/bin/Compile all the time and if it fails, just report the error.
- this will get rid of g++: No Input Files errors

6 lines of code changed in 1 file:

adrpo 2009-12-10 23:40 Rev.: 4665

- added Absyn.joinPathsOpt function

22 lines of code changed in 1 file:

ricli576 2009-12-10 21:47 Rev.: 4664

- Generate _functions.cpp file from root template
- Added TODO comments
- Added some notes

105 lines of code changed in 4 files:

sjoelund.se 2009-12-10 17:16 Rev.: 4661

- Rename namemods when renaming classes due to CLASS_EXTENDS.
- Fix so that you may extend from classes that use CLASS_EXTENDS nodes.
- Added testcase for this.

138 lines of code changed in 7 files:

petar 2009-12-10 15:38 Rev.: 4659

-Added function Error.getNumErrorMessages that returns number of messages in queue with severity 'Error'.

28 lines of code changed in 3 files:

stebr461 2009-12-10 14:36 Rev.: 4658

- Added test cases for operator overloading

146 lines of code changed in 6 files:

sjoelund.se 2009-12-10 10:20 Rev.: 4656

- Fixed class extends by renaming the extended class and creating a new one extending from the old in the same scope.
- We can now put proper modifications in the class extends node (they get elaboated in the correct scope).
- Only the toplevel class extends are expanded (not inherited). This bug will be fixed in a later commit.
- If the modifications on the extends node in the base class modifies the class we extend using class extends, those modifications will have higher priority. This is bug will be fixed in a later commit.

187 lines of code changed in 3 files:

ricli576 2009-12-10 10:16 Rev.: 4655

- Added dummy SimEqArray record for debugging purposes
- Extract array equations
- Generate DAE.Exp.ARRAY
- Added listLengthExp function

15188 lines of code changed in 5 files:

adrpo 2009-12-09 19:12 Rev.: 4654

- regenerated SimCodeC.mo and SimCode/SimCodeC.mo to make everything compile

2728 lines of code changed in 2 files:

perost 2009-12-09 17:49 Rev.: 4653

Implemented unary subtraction for real arrays.

24 lines of code changed in 3 files:

petar 2009-12-09 17:13 Rev.: 4652

-Fixed bug in getMessagesStr in errorext.cpp

3 lines of code changed in 2 files:

perost 2009-12-09 15:15 Rev.: 4651

Changed scalar types to array types where suitable in Static.operators, and
changed Codegen to reflect these changes. This was done to fix vector operations
that didn't work.

102 lines of code changed in 2 files:

ricli576 2009-12-09 15:06 Rev.: 4650

- Generate empty functions file so that compilation will succeed
(generation of function code failed for one test case)
- Replaced DAELow.Equation with SimEqSystem as a step to support array eqs

116 lines of code changed in 3 files:

perost 2009-12-09 10:10 Rev.: 4649

Added RTOpts.debugFlag guards to lessen overhead when debug output isn't used.

196 lines of code changed in 28 files:

ricli576 2009-12-08 23:13 Rev.: 4648

- Fixed incorrect array name
- Fixed incorrect switch variable name
- Added support for constant subscripts
- Generate removed equations in output functions
- Added (temporary) generation of makefile to be able to run testsuit
- Removed print statements since they interfered with rtest in testsuit
- Fixed order of equation lists (they were reversed)
- Fixed order of variables (now sorted by index)
- Fixed indents to match << (and >>) in templates

158 lines of code changed in 3 files:

ppriv 2009-12-08 21:05 Rev.: 4647

- a first complete Susan lexer/parser error reporting implementation
it is usable primarily with MDT in Eclipse ... reported errors are marked directly in code editor when the .tpl file is opened

10073 lines of code changed in 13 files:

sjoelund.se 2009-12-08 18:54 Rev.: 4646

- Static.operators was speeded up by a factor of 4. We now save a lot of the lists generated as constants.
- Fixed compiler warning in meta_modelica.c
- Fixed the BuiltinArray.mos testcase on 64-bit Linux

53 lines of code changed in 3 files:

petar 2009-12-08 16:25 Rev.: 4645

-Added HashTable6.mo : (cr,cr) -> exp
-Fixed bug in Errorext.cpp: getMessagesStr (no comma's between messages)
-Added some functions to Util
-Added VarTransform.replaceExpRepeated that iterates replacement rules until it converges.

1044 lines of code changed in 9 files:

ricli576 2009-12-08 10:55 Rev.: 4644

Refactored.

34 lines of code changed in 1 file:

ricli576 2009-12-08 09:18 Rev.: 4643

Changed vim mode line.

1 lines of code changed in 1 file:

ricli576 2009-12-07 21:03 Rev.: 4642

Restructured templates so there is one template per function.

88 lines of code changed in 1 file:

ricli576 2009-12-07 17:28 Rev.: 4641

- Added function function_onlyZeroCrossing
- Worked on function call template

58 lines of code changed in 1 file:

perost 2009-12-07 17:19 Rev.: 4640

Added test case AlgorithmForInClass.

126 lines of code changed in 3 files:

perost 2009-12-07 16:21 Rev.: 4639

Fixed and added test case SumSeriesWhile.

10 lines of code changed in 3 files:

adrpo 2009-12-07 15:49 Rev.: 4638

- use g++ as otherwise we have problems with undefined linker errors for exceptions.

3 lines of code changed in 1 file:

sjoelund.se 2009-12-07 14:57 Rev.: 4637

- Fixed lexer/parser external C functions for 11_petrol OMC implementation

280 lines of code changed in 4 files:

perost 2009-12-07 14:24 Rev.: 4636

Fixed bug in runtime system that caused result data for some points in time to be written twice.
Fixed test case BouncingBall2, because it depended on the above bug.

4 lines of code changed in 2 files:

sjoelund.se 2009-12-07 11:58 Rev.: 4635

- Added MetaModelica arrayLength, arrayGet, arrayCreate, arrayList, listArray, arrayUpdate, arrayCopy, arrayAdd. All use arrays as the underlying datatype. The array type should be considered mutable.

198 lines of code changed in 11 files:

perost 2009-12-07 10:47 Rev.: 4634

Cleaned up Debug.mo a bit.

0 lines of code changed in 1 file:

perost 2009-12-07 10:37 Rev.: 4633

Removed Exp.subscriptToInts, a duplicate of Exp.subscriptsInt.

3 lines of code changed in 2 files:

sjoelund.se 2009-12-04 18:25 Rev.: 4632

- Added initial support for MetaModelica array<ty>, including initial versions of arrayCreate, arrayGet and arrayLength (based on a list implementation which needs to be replaced).

171 lines of code changed in 10 files:

stebr461 2009-12-04 15:54 Rev.: 4631

- Moved some failing tests that now work to testfiles

3 lines of code changed in 1 file:

perost 2009-12-04 12:47 Rev.: 4628

Fixed license in Algorithm.mo, which had been the victim of a runaway search-and-replace.

1 lines of code changed in 1 file:

perost 2009-12-04 12:41 Rev.: 4627

Added initial support for while- and for-loops in class algorithm sections.

214 lines of code changed in 2 files:

perost 2009-12-04 12:40 Rev.: 4626

Added expInt function.

9 lines of code changed in 1 file:

ricli576 2009-12-03 18:01 Rev.: 4624

Implemented function checkForDiscreteVarChanges.

61 lines of code changed in 3 files:

sjoelund.se 2009-12-03 17:52 Rev.: 4623

- Ceval: asin, acos, atan, atan2, cross and log10 implemented and enabled

168 lines of code changed in 13 files:

ricli576 2009-12-03 16:47 Rev.: 4622

- Implemented function_updateDependents
- Implemented function_when
- Handle logical binary operations
- Added template daeExpCall

251 lines of code changed in 3 files:

sjoelund.se 2009-12-03 16:37 Rev.: 4621

- Add an implementation and testcase for a (very) simple redeclare replaceable model extends (used in Media).

204 lines of code changed in 4 files:

adrpo 2009-12-03 13:05 Rev.: 4620

- use fill(...) instead of listFill + listArray

45 lines of code changed in 6 files:

stebr461 2009-12-02 13:27 Rev.: 4618

- some updates to testsuite spreadsheet

0 lines of code changed in 1 file:

stebr461 2009-12-02 13:25 Rev.: 4617

- atan2 added to modelica built in functions

10 lines of code changed in 4 files:

stebr461 2009-12-02 11:49 Rev.: 4616

- PartialFn13 now works with if expressions again
- Fixed some type conversions
- Added function unboxExpType to Exp

25 lines of code changed in 3 files:

stebr461 2009-12-02 10:14 Rev.: 4615

- Changed PartialFn13 to use an if statement for now

11 lines of code changed in 5 files:

ricli576 2009-12-01 18:58 Rev.: 4614

- Implemented function bound_parameters
- Refactored expression templates
- Fixed incorrect names for derivatives
- Fixed incorrect names for some equations
- Implemented function function_zeroCrossing
- Implemented function handleZeroCrossing

382 lines of code changed in 3 files:

sjoelund.se 2009-12-01 16:57 Rev.: 4613

- More RTOpts guards for MetaModelica cases

16 lines of code changed in 1 file:

sjoelund.se 2009-12-01 16:06 Rev.: 4612

- Renamed C runtime metamodelica_type to modelica_metatype, to fit with Codegen standards.
- DAE.IFEXP now generates a temporary so it can be used with array functions.
- Disabled PartialFn13.mos since the DAE.CALL of those functions have incorrect return-type, and correct code isn't generated.

109 lines of code changed in 9 files:

sjoelund.se 2009-12-01 12:15 Rev.: 4611

- Disable printing "Types.matchProp debug: match prop.". Saves about 1m (20% total time) when trying to flatten double pendulum.

0 lines of code changed in 1 file:

sjoelund.se 2009-12-01 11:39 Rev.: 4610

- Fix compilation warnings for 08_pam/lexer.l on 64-bit platforms

3 lines of code changed in 1 file:

adrpo 2009-12-01 11:13 Rev.: 4609

- guard the MetaModelica lookupType in Static.elabCallArgs with
true = RTOpts.acceptMetaModelicaGrammar();
as lookup is rather expensive.
- in Static.elabBuiltinSmooth when smooth(0, expr) just return expr.

14 lines of code changed in 1 file:

adrpo 2009-12-01 09:17 Rev.: 4607

- changed from mk_scon to mmc_mk_scon as otherwise this test fails on Windows.

1 lines of code changed in 1 file:

November 2009 »

Generated by StatSVN 0.7.0