Skip to content

Commit

Permalink
Update OMSimulator (#6829)
Browse files Browse the repository at this point in the history
  • Loading branch information
lochel committed Oct 13, 2020
1 parent 50c4530 commit 0d72a0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMSimulator
Submodule OMSimulator updated 45 files
+3 −0 README.md
+4 −4 doc/UsersGuide/source/api/exportDependencyGraphs.rst
+41 −0 doc/UsersGuide/source/api/exportSnapshot.rst
+37 −0 doc/UsersGuide/source/api/importSnapshot.rst
+1 −1 doc/UsersGuide/source/api/loadSnapshot.rst
+26 −2 src/OMSimulatorLib/ComponentFMUCS.cpp
+26 −2 src/OMSimulatorLib/ComponentFMUME.cpp
+113 −0 src/OMSimulatorLib/Model.cpp
+7 −1 src/OMSimulatorLib/Model.h
+24 −2 src/OMSimulatorLib/OMSimulator.cpp
+3 −1 src/OMSimulatorLib/OMSimulator.h
+91 −53 src/OMSimulatorLib/System.cpp
+7 −6 src/OMSimulatorLib/System.h
+5 −5 src/OMSimulatorLib/SystemSC.cpp
+13 −13 src/OMSimulatorLib/SystemWC.cpp
+5 −0 src/OMSimulatorLib/ssd/Tags.cpp
+4 −0 src/OMSimulatorLib/ssd/Tags.h
+50 −5 src/OMSimulatorLua/OMSimulatorLua.c
+19 −3 src/OMSimulatorPython/OMSimulator.py.in
+0 −3 testsuite/.gitignore
+55 −0 testsuite/OMSimulator/Enumeration.lua
+6 −1 testsuite/OMSimulator/Makefile
+103 −0 testsuite/OMSimulator/importStartValues.lua
+180 −0 testsuite/OMSimulator/import_export_snapshot.lua
+1 −1 testsuite/OMSimulator/setExternalInputs.lua
+1 −1 testsuite/OMSimulator/simulation.lua
+1 −1 testsuite/OMSimulator/simulation.py
+104 −0 testsuite/OMSimulator/snapshot.lua
+108 −0 testsuite/OMSimulator/snapshot.py
+1 −0 testsuite/api/Makefile
+158 −0 testsuite/api/test03.py
+3 −0 testsuite/difftool/.gitignore
+2 −0 testsuite/resources/.gitignore
+ testsuite/resources/Enum1/binaries/linux64/Enum1.so
+0 −0 testsuite/resources/Enum1/binaries/linux64/Enum1_FMU.libs
+197 −0 testsuite/resources/Enum1/modelDescription.xml
+11 −0 testsuite/resources/Enum1/resources/Enum1_info.json
+ testsuite/resources/Int1/binaries/linux64/Int1.so
+0 −0 testsuite/resources/Int1/binaries/linux64/Int1_FMU.libs
+194 −0 testsuite/resources/Int1/modelDescription.xml
+14 −0 testsuite/resources/Int1/resources/Int1_info.json
+9 −1 testsuite/resources/Makefile
+53 −0 testsuite/resources/importStartValues/SystemStructure.ssd
+8 −0 testsuite/resources/importStartValues/resources/Root.ssv
+11 −0 testsuite/resources/importStartValues/resources/System1.ssv

0 comments on commit 0d72a0e

Please sign in to comment.