Skip to content

Commit

Permalink
HUGE CHANGES THAT FIX A MEMORY LEAK AND REQUIRE
Browse files Browse the repository at this point in the history
A NEW OMDev: [http://www.ida.liu.se/~adrpo/omc/omdev/mingw/]
or a new MMC/RML Compiler: [do an svn update]

- Fixes for the memory leak
  + got rid of yacclib.c|h as this functionality is now present directly in mmc/rml
  + got rid of yacclib.h include in files:
    TaskGraphExt.cpp, TaskGraphExt_stub.cpp, corbaimpl.cpp, daeext.cpp, 
    errorext.cpp, printimpl.c, ptolemyio.cpp, rtopts.c, settingsimpl.c,
    systemimpl.c

- Changes to Visual Source projects to deal with fixes for the memory leak
  + pushed the new changes into rmlRuntime project
  + removed yacclib.c|h from the projects
  + small changes to the debug configuration of projects

- Changed the default tolerance from 1e-10 to 1e-6 in 
  Main.mo and commands.xml

git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@3637 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Sep 14, 2008
1 parent 0140066 commit f67f47e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OMNotebook/OMNotebookQT4/commands.xml
Expand Up @@ -92,15 +92,15 @@
<field name="$1">0</field>
<field name="$2">1</field>
<field name="$3">500</field>
<field name="$4">1e-10</field>
<field name="$4">1e-6</field>
<helptext>Translates a model and simulates it. Ex: simulate(dcmotor). Ex: simulate(dcmotor,startTime=0, stopTime=10, numberOfIntervals=1000).</helptext>
</command>
<command name="buildModel($0, startTime=$1, stopTime=$2, numberOfIntervals=$3, tolerance=$4, storeInTemp=$5)">
<field name="$0">modelname</field>
<field name="$1">0</field>
<field name="$2">1</field>
<field name="$3">500</field>
<field name="$4">1e-10</field>
<field name="$4">1e-6</field>
<field name="$5">false</field>
<helptext>Translates a model and simulates it. Ex: buildModel(dcmotor). Ex: buildMotor(dcmotor,startTime=0, stopTime=10, numberOfIntervals=1000).</helptext>
</command>
Expand Down

0 comments on commit f67f47e

Please sign in to comment.