Directory SimulationRuntime/cpp/Core/System/

Directory Created:
2013-01-25 15:24
Total Files:
10
Deleted Files:
7
Lines of Code:
1661

[root]/SimulationRuntime/cpp/Core/System

Lines of Code

SimulationRuntime/cpp/Core/System/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 261 (100.0%) 6889 (100.0%) 26.3
niklwors 116 (44.4%) 3353 (48.7%) 28.9
hudson 52 (19.9%) 1438 (20.9%) 27.6
sjoelund.se 21 (8.0%) 987 (14.3%) 47.0
nimen 7 (2.7%) 600 (8.7%) 85.7
mwalther 34 (13.0%) 374 (5.4%) 11.0
M.Arzt 10 (3.8%) 79 (1.1%) 7.9
RuedKamp 13 (5.0%) 31 (0.4%) 2.3
rfranke 5 (1.9%) 22 (0.3%) 4.4
cschubert 1 (0.4%) 3 (0.0%) 3.0
adrpo 2 (0.8%) 2 (0.0%) 1.0

Most Recent Commits

rfranke 2015-05-02 21:44 Rev.: 25880

implement pre values of arrays

see Modelica.Blocks.Examples.Interaction1

9 lines of code changed in 2 files:

  • SimulationRuntime/cpp/Core/System: DiscreteEvents.cpp (+6 -8), SimVars.cpp (+3 -3)
rfranke 2015-05-01 08:14 Rev.: 25860

add const qualifiers to array operations

6 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SimVars.cpp (+6 -6)
sjoelund.se 2015-04-30 15:09 Rev.: 25851

Install cppruntime libraries in the correct directory

4 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: CMakeLists.txt (+4 -4)
mwalther 2015-04-29 10:01 Rev.: 25804

- added a mapping for variables to storage positions, to support efficient code generation that keeps array-variables as arrays
- a new HashTable is now part of the code, that maps a ComponentReference to an array of Integers and a list of Integers
- HpcOm memory optimization disabled
- initAliasArray-interface extended in SimVars-Class
- some typo fixes

30 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SimVars.cpp (+30 -8)
niklwors 2015-04-28 13:53 Rev.: 25784

fix for precompiled header of cpp runtime msvc build
added use of precompiled header for cpp runtime libraries

5 lines of code changed in 2 files:

  • SimulationRuntime/cpp/Core/System: CMakeLists.txt (+1 -1), FactoryExport.cpp (+4 -4)
RuedKamp 2015-04-27 08:54 Rev.: 25749

-moved FactoryExport.h to include directory

8 lines of code changed in 9 files:

  • SimulationRuntime/cpp/Core/System: AlgLoopDefaultImplementation.cpp (+1 -1), CMakeLists.txt (+1 -1), ContinuousEvents.cpp (+1 -1), DiscreteEvents.cpp (+1 -1), EventHandling.cpp (+1 -1), FactoryExport.cpp (+1 -1), FactoryExport.h (del), SimVars.cpp (+1 -1), SystemDefaultImplementation.cpp (+1 -1)
rfranke 2015-04-26 20:40 Rev.: 25747

avoid underflow of unsigned size_t and access to NULL if there are no real variables

This follows up r25740 (see Modelica.Utilities.Examples.readRealParameterModel).

5 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SimVars.cpp (+5 -5)
niklwors 2015-04-21 10:01 Rev.: 25654

removed shared array from simvars

7 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SimVars.cpp (+7 -5)
niklwors 2015-04-20 18:51 Rev.: 25651

fix for typo in SimVars initBoolVar

2 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SimVars.cpp (+2 -2)
hudson 2015-04-20 17:49 Rev.: 25650

[Janitor mode] Fix whitespace

2 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SimVars.cpp (+2 -2)
niklwors 2015-04-20 17:46 Rev.: 25649

added method for the initialization of alias arrays in cpp runtime

171 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SimVars.cpp (+171 -35)
mwalther 2015-04-20 14:18 Rev.: 25644

- removed debug output in HpcOmMemory
- some simple improvements in HpcOmMemory
- CodegenCpp.tpl: Number of real, int, bool and pre variables can now be passed as argument to simulationMainFile-template
- some more fixes for hpcom code generation -> memory optimization is still not working for arrays with the new variable structure
- sim var arrays are now aligned to default cache line size of 64 byte
- testsuite update for some hpcom tests

168 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SimVars.cpp (+168 -166)
mwalther 2015-04-17 08:40 Rev.: 25596

- some smaller fixes for hpcom memory optimization
- MemberVariablePreVariables-code is now separated from the simulationCppFile-Code in the CodegenCpp.tpl
- _event_system is now initialized to NULL in the continousEvents-Class

1 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: ContinuousEvents.cpp (+1 -1)
rfranke 2015-04-10 17:45 Rev.: 25500

adapt FMI2 to new SimVars

2 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: CMakeLists.txt (+2)
hudson 2015-04-10 11:17 Rev.: 25488

[Janitor mode] Fix whitespace

74 lines of code changed in 3 files:

  • SimulationRuntime/cpp/Core/System: EventHandling.cpp (+1 -1), SimVars.cpp (+72 -72), SystemDefaultImplementation.cpp (+1 -1)
hudson 2015-04-10 11:16 Rev.: 25487

[Janitor mode] Set auto-props

216 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SimVars.cpp (+216 -215)
niklwors 2015-04-10 11:03 Rev.: 25486

added SimVars class to cpp runtime which stores all model variables
removed [Model]PreVariables class in cpp template and moved functionality to SimVars class
modified get/set methods,array class,eventhandling classes to new SimvVars class

258 lines of code changed in 7 files:

  • SimulationRuntime/cpp/Core/System: CMakeLists.txt (+4 -3), DiscreteEvents.cpp (+18 -21), EventHandling.cpp (+3 -7), FactoryExport.cpp (+4 -1), FactoryExport.h (+2 -2), SimVars.cpp (new 215), SystemDefaultImplementation.cpp (+12 -4)
mwalther 2015-03-25 09:41 Rev.: 25242

- changed minimum cmake version to 2.8.6
- changed DIRECTORY to PATH keyword, because this is not available in CMake < 2.8.11 (this should fix the linux nightly build)

1 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: CMakeLists.txt (+1 -1)
mwalther 2015-03-03 17:55 Rev.: 24884

- changed PreVariables-Array from dynamic to static
- added a "isSome"-function to the Util-module

1 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: DiscreteEvents.cpp (+1 -1)
niklwors 2015-03-03 12:18 Rev.: 24870

fix for initialization of string alias variables in cpp template

9 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SystemDefaultImplementation.cpp (+9 -1)
mwalther 2015-02-23 18:21 Rev.: 24718

- CVode and IDA are now calculating the "final time point" correctly
- Added a simple getter for global-settings

6 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SystemDefaultImplementation.cpp (+6 -1)
mwalther 2015-02-11 09:07 Rev.: 24516

- added IDA-library support for static linked cpp-runtime
- fixed static cpp-runtime linking on windows
- all static generated libraries have now the suffix "_static"
- changed all busy-waiting tests to n=1

17 lines of code changed in 2 files:

  • SimulationRuntime/cpp/Core/System: CMakeLists.txt (+17 -15), FactoryExport.h (-6)
niklwors 2015-02-10 16:26 Rev.: 24507

changed SimulationError exception class of cpp runtime

10 lines of code changed in 3 files:

  • SimulationRuntime/cpp/Core/System: AlgLoopDefaultImplementation.cpp (+2 -2), AlgLoopSolverFactory.cpp (+2 -2), SystemDefaultImplementation.cpp (+6 -6)
niklwors 2015-02-04 13:59 Rev.: 24400

added new exception class for all simulation errors in cpp runtime

10 lines of code changed in 3 files:

  • SimulationRuntime/cpp/Core/System: AlgLoopDefaultImplementation.cpp (+2 -2), AlgLoopSolverFactory.cpp (+2 -2), SystemDefaultImplementation.cpp (+6 -6)
mwalther 2015-02-03 17:36 Rev.: 24386

- RUNTIME_STATIC_LINKING is now working for Windows systems (MinGW)

6 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: FactoryExport.h (+6)
hudson 2015-01-29 18:26 Rev.: 24309

[Janitor mode] Fix whitespace

1 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: AlgLoopDefaultImplementation.cpp (+1 -1)
niklwors 2015-01-29 18:05 Rev.: 24306

adapted BufferReaderWriter of cpp runtime to new writer interface

3 lines of code changed in 2 files:

  • SimulationRuntime/cpp/Core/System: AlgLoopDefaultImplementation.cpp (+3 -28), SystemDefaultImplementation.cpp (-1)
mwalther 2015-01-27 09:49 Rev.: 24218

- changed name of "Analyzation_Mode" to "Runtime_static_linking"
- removed flag "hpcomAnalyzationMode"
- moved Runtime_static_linking into cpp-template
- added a flag to link boost statically to the cpp-runtime

5 lines of code changed in 2 files:

  • SimulationRuntime/cpp/Core/System: AlgLoopSolverFactory.cpp (+1 -1), CMakeLists.txt (+4 -4)
hudson 2015-01-22 16:32 Rev.: 24155

[Janitor mode] Fix whitespace

1 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: EventHandling.cpp (+1 -1)
niklwors 2015-01-22 15:58 Rev.: 24153

fix for delete objects in cpp template, removed includes SystemDefaultimplementation of cpp runtime

6 lines of code changed in 4 files:

  • SimulationRuntime/cpp/Core/System: ContinuousEvents.cpp (-1), EventHandling.cpp (+5 -4), FactoryExport.cpp (-2), SystemDefaultImplementation.cpp (+1 -1)
hudson 2015-01-21 15:23 Rev.: 24130

[Janitor mode] Fix whitespace

9 lines of code changed in 3 files:

  • SimulationRuntime/cpp/Core/System: ContinuousEvents.cpp (+3 -3), DiscreteEvents.cpp (+4 -4), EventHandling.cpp (+2 -2)
hudson 2015-01-21 15:23 Rev.: 24129

[Janitor mode] Set auto-props

261 lines of code changed in 2 files:

  • SimulationRuntime/cpp/Core/System: ContinuousEvents.cpp (+89 -88), DiscreteEvents.cpp (+172 -171)
niklwors 2015-01-21 15:14 Rev.: 24127

splitted EventHandling class in DiscreteEvents,ContinuousEvents and PreVariables

281 lines of code changed in 5 files:

  • SimulationRuntime/cpp/Core/System: CMakeLists.txt (+5 -2), ContinuousEvents.cpp (new 87), DiscreteEvents.cpp (new 170), EventHandling.cpp (+16 -274), SystemDefaultImplementation.cpp (+3 -2)
niklwors 2015-01-13 17:26 Rev.: 24028

modified setStartValue and getStartValue in cpp runtime

15 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SystemDefaultImplementation.cpp (+15 -15)
hudson 2015-01-13 12:38 Rev.: 24026

[Janitor mode] Fix whitespace

3 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: EventHandling.cpp (+3 -3)
niklwors 2015-01-13 12:29 Rev.: 24025

modified pre method in cpp runtime, removed second parameter
expected output

104 lines of code changed in 2 files:

  • SimulationRuntime/cpp/Core/System: EventHandling.cpp (+100 -19), SystemDefaultImplementation.cpp (+4 -4)
niklwors 2014-12-15 16:29 Rev.: 23785

removed saveDiscreteVars in cpp template, activated get and set method for variables only for fmi code generation in cpp template

3 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: EventHandling.cpp (+3 -3)
niklwors 2014-10-31 18:07 Rev.: 23117

fix for dae exp reductions in cpp template, fix for memory leaks in cpp runtime

3 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: SystemDefaultImplementation.cpp (+3)
nimen 2014-10-30 11:02 Rev.: 23070

Adaptions for VxWorks and Bodas in Kinsol and AlgLoopSolverFactory and cleanup of files in cpp runtime

1 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: AlgLoopSolverFactory.cpp (+1 -1)
RuedKamp 2014-10-24 16:51 Rev.: 22922

-adapted cpp runtime files for vxworks

7 lines of code changed in 1 file:

  • SimulationRuntime/cpp/Core/System: AlgLoopSolverFactory.cpp (+7)

(72 more)

Generated by StatSVN 0.7.0