diff --git a/.github/workflows/deploy-on-release.yml b/.github/workflows/deploy-on-release.yml index fcaf0d0023..ed742709ba 100644 --- a/.github/workflows/deploy-on-release.yml +++ b/.github/workflows/deploy-on-release.yml @@ -293,8 +293,7 @@ jobs: exclude: - os: macos-12 py: '3.7' - - os: macos-12 - py: '3.8' + steps: - name: Check out libCellML uses: actions/checkout@v2 @@ -314,6 +313,18 @@ jobs: #echo ::set-output name=TAG::v0.2.0-dev.21 echo "Setting build as: BUILD=cp${v/./}-*" echo ::set-output name=BUILD::cp${v/./}-* + if [[ "macOS" == "${{ matrix.name }}" ]]; then + if [[ "${{ matrix.py }}" == "3.8" ]]; then + echo "Setting MACOS_ARCHS as: MACOS_ARCHS='x86_64'" + echo ::set-output name=MACOS_ARCHS::x86_64 + else + echo "Setting MACOS_ARCHS as: MACOS_ARCHS='x86_64 arm64'" + echo ::set-output name=MACOS_ARCHS::"x86_64 arm64" + fi + else + echo "Setting MACOS_ARCHS as: MACOS_ARCHS='x86_64'" + echo ::set-output name=MACOS_ARCHS::x86_64 + fi - name: Configure MSVC if: runner.os == 'Windows' @@ -332,14 +343,14 @@ jobs: env: #CIBW_BUILD_VERBOSITY: 1 CIBW_ARCHS: auto64 - CIBW_ARCHS_MACOS: "x86_64 arm64" + CIBW_ARCHS_MACOS: ${{ steps.setup.outputs.macos_archs }} CIBW_BUILD: ${{ steps.setup.outputs.build }} CIBW_TEST_SKIP: "*_arm64" CIBW_BEFORE_ALL_LINUX: yum install -y libxml2-devel || (apk add libxml2-dev && rm /usr/lib/cmake/libxml2/libxml2-config.cmake) CIBW_BEFORE_ALL_WINDOWS: cd src/bindings/python && cmake -S wheel_dependencies -B build-wheel_dependencies -G Ninja && cd build-wheel_dependencies && ninja CIBW_ENVIRONMENT: LIBCELLML_VERSION_TAG=${{ steps.setup.outputs.tag }} CIBW_ENVIRONMENT_MACOS: > - MACOSX_DEPLOYMENT_TARGET=11.0 + MACOSX_DEPLOYMENT_TARGET=10.15 LIBCELLML_VERSION_TAG=${{ steps.setup.outputs.tag }} CIBW_REPAIR_WHEEL_COMMAND_MACOS: "" CIBW_BEFORE_BUILD_LINUX: pip install renamewheel diff --git a/CMakeLists.txt b/CMakeLists.txt index bf62cde99f..735c5a3d2e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ cmake_minimum_required(VERSION 3.10.2) set(PROJECT_NAME libCellML) set(PROJECT_URL https://libcellml.org) -set(_PROJECT_VERSION 0.3.101) +set(_PROJECT_VERSION 0.3.102) set(PROJECT_DEVELOPER_VERSION ) project(${PROJECT_NAME} VERSION ${_PROJECT_VERSION} LANGUAGES CXX) diff --git a/docs/changelogs/changelog_v0.3.101.rst b/docs/changelogs/changelog_v0.3.101.rst index 4514b36770..c58192d997 100644 --- a/docs/changelogs/changelog_v0.3.101.rst +++ b/docs/changelogs/changelog_v0.3.101.rst @@ -1,2 +1,15 @@ libCellML v0.3.101 Changelog ============================ + +Infrastructure +-------------- + +* Fixing the manylinux tag name by `@hsorby `_ [`#1029 `_]. + +Contributors +------------ + +.. image:: https://avatars.githubusercontent.com/u/778048?v=4 + :target: https://github.com/hsorby + :height: 32 + :width: 32 diff --git a/docs/changelogs/changelog_v0.3.102.rst b/docs/changelogs/changelog_v0.3.102.rst new file mode 100644 index 0000000000..8e6dc9c492 --- /dev/null +++ b/docs/changelogs/changelog_v0.3.102.rst @@ -0,0 +1,20 @@ +libCellML v0.3.102 Changelog +============================ + +Documentation +------------- + +* Update changelog_v0.3.101.rst by `@hsorby `_ [`#1032 `_]. + +Infrastructure +-------------- + +* Adding support for Python 3.8 macOS wheels by `@hsorby `_ [`#1034 `_]. + +Contributors +------------ + +.. image:: https://avatars.githubusercontent.com/u/778048?v=4 + :target: https://github.com/hsorby + :height: 32 + :width: 32 diff --git a/docs/changelogs/index.rst b/docs/changelogs/index.rst index e644d50e89..efcdd08c3c 100644 --- a/docs/changelogs/index.rst +++ b/docs/changelogs/index.rst @@ -4,6 +4,7 @@ Changelogs .. toctree:: + changelog_v0.3.102 changelog_v0.3.101 changelog_v0.3.100 changelog_v0.3.99 diff --git a/docs/index.rst b/docs/index.rst index 1c40d442de..1e1dfdba0a 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -37,6 +37,7 @@ Changelogs .. toctree:: + changelogs/changelog_v0.3.102 changelogs/changelog_v0.3.101 changelogs/changelog_v0.3.100 changelogs/changelog_v0.3.99 diff --git a/tests/bindings/javascript/version.test.js b/tests/bindings/javascript/version.test.js index 1028b35a2d..39685dca1d 100644 --- a/tests/bindings/javascript/version.test.js +++ b/tests/bindings/javascript/version.test.js @@ -22,6 +22,6 @@ describe("Version tests", () => { libcellml = await libCellMLModule(); }); test('Checking version string.', () => { - expect(libcellml.versionString()).toBe('0.3.101'); + expect(libcellml.versionString()).toBe('0.3.102'); }); }) diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.c b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.c index d5bba6558b..3ead451554 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.c +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.c b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.c index 297150c7d8..85d53b6400 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.c +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.external.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.h b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.h index 65a2b8407e..cbe3afec0a 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.h +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.py b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.py index dc4486c958..d0b4fb7b73 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.py +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.h b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.h index a8b285ea3b..8e717b0216 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.h +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.py b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.py index 8272f89a28..7f1b529c81 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.py +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.c b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.c index e38dc28a36..9f1d8a5ec9 100644 --- a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.c +++ b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.h b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.h index a8b285ea3b..8e717b0216 100644 --- a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.h +++ b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.py b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.py index 0ea02a681c..da2f78fa05 100644 --- a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.py +++ b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.c b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.c index 00d2fe6ece..40c598b991 100644 --- a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.c +++ b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.h b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.h index 1b3f61f29e..31910fdb3c 100644 --- a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.h +++ b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.py b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.py index 554f099047..c8f3eb3927 100644 --- a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.py +++ b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.c b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.c index 5ba0d5e00c..a291fb50d9 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.c +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.h b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.h index 131db59354..b66d773287 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.h +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.py b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.py index fd7724837a..63384a0678 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.py +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.c b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.c index 4becd826ff..b48a449d03 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.c +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.h b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.h index 6e4dda05b6..2eee2705a8 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.h +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.py b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.py index 8cf66bbba2..c4f515daed 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.py +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.c b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.c index 2f297fedf2..33bf4ed633 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.c +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.h b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.h index 4f2aa30092..81fa4a6fb2 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.h +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.py b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.py index e3de76ba16..c1edb5b9da 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.py +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.c b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.c index ef39983eeb..cb620f1263 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.c +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.h b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.h index 5152409b66..5f905dfb7b 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.h +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.py b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.py index 350d7d3fec..71617ecc6f 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.py +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/cell_geometry_model/model.c b/tests/resources/generator/cell_geometry_model/model.c index ca70b657a2..382b54f0b5 100644 --- a/tests/resources/generator/cell_geometry_model/model.c +++ b/tests/resources/generator/cell_geometry_model/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 4; diff --git a/tests/resources/generator/cell_geometry_model/model.external.c b/tests/resources/generator/cell_geometry_model/model.external.c index 948b33e9ce..a6061f460a 100644 --- a/tests/resources/generator/cell_geometry_model/model.external.c +++ b/tests/resources/generator/cell_geometry_model/model.external.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.external.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 4; diff --git a/tests/resources/generator/cell_geometry_model/model.external.h b/tests/resources/generator/cell_geometry_model/model.external.h index 89fd696fe2..95dc072af6 100644 --- a/tests/resources/generator/cell_geometry_model/model.external.h +++ b/tests/resources/generator/cell_geometry_model/model.external.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cell_geometry_model/model.external.py b/tests/resources/generator/cell_geometry_model/model.external.py index 0145bbd51a..05d96e74cc 100644 --- a/tests/resources/generator/cell_geometry_model/model.external.py +++ b/tests/resources/generator/cell_geometry_model/model.external.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 4 diff --git a/tests/resources/generator/cell_geometry_model/model.h b/tests/resources/generator/cell_geometry_model/model.h index d7d4061942..5803909208 100644 --- a/tests/resources/generator/cell_geometry_model/model.h +++ b/tests/resources/generator/cell_geometry_model/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cell_geometry_model/model.py b/tests/resources/generator/cell_geometry_model/model.py index 6549b25b2c..e37804aed7 100644 --- a/tests/resources/generator/cell_geometry_model/model.py +++ b/tests/resources/generator/cell_geometry_model/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 4 diff --git a/tests/resources/generator/cellml_mappings_and_encapsulations/model.c b/tests/resources/generator/cellml_mappings_and_encapsulations/model.c index 2cbd8314ec..bd630ee22f 100644 --- a/tests/resources/generator/cellml_mappings_and_encapsulations/model.c +++ b/tests/resources/generator/cellml_mappings_and_encapsulations/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/cellml_mappings_and_encapsulations/model.h b/tests/resources/generator/cellml_mappings_and_encapsulations/model.h index 3dc8cb0a7d..7203f081f8 100644 --- a/tests/resources/generator/cellml_mappings_and_encapsulations/model.h +++ b/tests/resources/generator/cellml_mappings_and_encapsulations/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_mappings_and_encapsulations/model.py b/tests/resources/generator/cellml_mappings_and_encapsulations/model.py index 9ef0441501..2005d878ea 100644 --- a/tests/resources/generator/cellml_mappings_and_encapsulations/model.py +++ b/tests/resources/generator/cellml_mappings_and_encapsulations/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/cellml_state_initialised_using_variable/model.c b/tests/resources/generator/cellml_state_initialised_using_variable/model.c index 68bbb8bd43..b400316621 100644 --- a/tests/resources/generator/cellml_state_initialised_using_variable/model.c +++ b/tests/resources/generator/cellml_state_initialised_using_variable/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/cellml_state_initialised_using_variable/model.h b/tests/resources/generator/cellml_state_initialised_using_variable/model.h index f9a5aa2666..b5e4934c3d 100644 --- a/tests/resources/generator/cellml_state_initialised_using_variable/model.h +++ b/tests/resources/generator/cellml_state_initialised_using_variable/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_state_initialised_using_variable/model.py b/tests/resources/generator/cellml_state_initialised_using_variable/model.py index 11b578bf5a..640fb856f2 100644 --- a/tests/resources/generator/cellml_state_initialised_using_variable/model.py +++ b/tests/resources/generator/cellml_state_initialised_using_variable/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/cellml_unit_scaling_constant/model.c b/tests/resources/generator/cellml_unit_scaling_constant/model.c index 54b3b3e976..9dd1d14b1e 100644 --- a/tests/resources/generator/cellml_unit_scaling_constant/model.c +++ b/tests/resources/generator/cellml_unit_scaling_constant/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 3; diff --git a/tests/resources/generator/cellml_unit_scaling_constant/model.h b/tests/resources/generator/cellml_unit_scaling_constant/model.h index bf6aeae0e7..4d82c06fbb 100644 --- a/tests/resources/generator/cellml_unit_scaling_constant/model.h +++ b/tests/resources/generator/cellml_unit_scaling_constant/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_constant/model.py b/tests/resources/generator/cellml_unit_scaling_constant/model.py index 0ef007e0f7..39bcce2e95 100644 --- a/tests/resources/generator/cellml_unit_scaling_constant/model.py +++ b/tests/resources/generator/cellml_unit_scaling_constant/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 3 diff --git a/tests/resources/generator/cellml_unit_scaling_rate/model.c b/tests/resources/generator/cellml_unit_scaling_rate/model.c index a7bd28ddd1..eda0422bd7 100644 --- a/tests/resources/generator/cellml_unit_scaling_rate/model.c +++ b/tests/resources/generator/cellml_unit_scaling_rate/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/cellml_unit_scaling_rate/model.h b/tests/resources/generator/cellml_unit_scaling_rate/model.h index f9a5aa2666..b5e4934c3d 100644 --- a/tests/resources/generator/cellml_unit_scaling_rate/model.h +++ b/tests/resources/generator/cellml_unit_scaling_rate/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_rate/model.py b/tests/resources/generator/cellml_unit_scaling_rate/model.py index c3aa805527..8977e562b7 100644 --- a/tests/resources/generator/cellml_unit_scaling_rate/model.py +++ b/tests/resources/generator/cellml_unit_scaling_rate/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/cellml_unit_scaling_state/model.c b/tests/resources/generator/cellml_unit_scaling_state/model.c index b603120c16..6f4a4e36b9 100644 --- a/tests/resources/generator/cellml_unit_scaling_state/model.c +++ b/tests/resources/generator/cellml_unit_scaling_state/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/cellml_unit_scaling_state/model.h b/tests/resources/generator/cellml_unit_scaling_state/model.h index f9a5aa2666..b5e4934c3d 100644 --- a/tests/resources/generator/cellml_unit_scaling_state/model.h +++ b/tests/resources/generator/cellml_unit_scaling_state/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_state/model.py b/tests/resources/generator/cellml_unit_scaling_state/model.py index adce1854e9..676b0796ba 100644 --- a/tests/resources/generator/cellml_unit_scaling_state/model.py +++ b/tests/resources/generator/cellml_unit_scaling_state/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.c b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.c index 5a3ac3cdce..c03f388e12 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.c +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 0; diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.h b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.h index 42298b8dbd..f52e14f06b 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.h +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.py b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.py index ac9c300efa..fc76b05fee 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.py +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 0 diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.c b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.c index e894acc1aa..4106a3f331 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.c +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.h b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.h index 6469d1db32..6361014f26 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.h +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.py b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.py index 21df91e6e4..567d24a86b 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.py +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.c b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.c index 46450873b1..a00e55cc77 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.c +++ b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 0; diff --git a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.h b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.h index 3c72fd035a..1e6ad749c8 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.h +++ b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.py b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.py index d909c06680..67d9a68c7a 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.py +++ b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 0 diff --git a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.c b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.c index 13ed039e68..68db25fa10 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.c +++ b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 0; diff --git a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.h b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.h index f9a5aa2666..b5e4934c3d 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.h +++ b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.py b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.py index f29af722f3..106ddb6e0d 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.py +++ b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 0 diff --git a/tests/resources/generator/coverage/model.c b/tests/resources/generator/coverage/model.c index 45ce4bc74e..1e331905d3 100644 --- a/tests/resources/generator/coverage/model.c +++ b/tests/resources/generator/coverage/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 186; diff --git a/tests/resources/generator/coverage/model.h b/tests/resources/generator/coverage/model.h index 630d3b7ff1..551e3c5f6d 100644 --- a/tests/resources/generator/coverage/model.h +++ b/tests/resources/generator/coverage/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/coverage/model.implementation.out b/tests/resources/generator/coverage/model.implementation.out index 5fcbf8b186..f545fcfe1e 100644 --- a/tests/resources/generator/coverage/model.implementation.out +++ b/tests/resources/generator/coverage/model.implementation.out @@ -1,4 +1,4 @@ -/* The content of this file was generated using a modified C profile of libCellML 0.3.101. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.102. */ double xor(double x, double y) { diff --git a/tests/resources/generator/coverage/model.interface.out b/tests/resources/generator/coverage/model.interface.out index f720ed428f..36a03350bf 100644 --- a/tests/resources/generator/coverage/model.interface.out +++ b/tests/resources/generator/coverage/model.interface.out @@ -1,4 +1,4 @@ -/* The content of this file was generated using a modified C profile of libCellML 0.3.101. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/coverage/model.modified.profile.c b/tests/resources/generator/coverage/model.modified.profile.c index 58b3fee208..6b291408b2 100644 --- a/tests/resources/generator/coverage/model.modified.profile.c +++ b/tests/resources/generator/coverage/model.modified.profile.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using a modified C profile of libCellML 0.3.101. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0.post0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 186; diff --git a/tests/resources/generator/coverage/model.modified.profile.h b/tests/resources/generator/coverage/model.modified.profile.h index 6670cbae4b..3075e6d3a7 100644 --- a/tests/resources/generator/coverage/model.modified.profile.h +++ b/tests/resources/generator/coverage/model.modified.profile.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using a modified C profile of libCellML 0.3.101. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/coverage/model.modified.profile.py b/tests/resources/generator/coverage/model.modified.profile.py index a90bbde2cd..a87ce1ffb4 100644 --- a/tests/resources/generator/coverage/model.modified.profile.py +++ b/tests/resources/generator/coverage/model.modified.profile.py @@ -1,11 +1,11 @@ -# The content of this file was generated using a modified Python profile of libCellML 0.3.101. +# The content of this file was generated using a modified Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0.post0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 186 diff --git a/tests/resources/generator/coverage/model.out b/tests/resources/generator/coverage/model.out index bddf8ef554..c19807828b 100644 --- a/tests/resources/generator/coverage/model.out +++ b/tests/resources/generator/coverage/model.out @@ -1,4 +1,4 @@ -/* The content of this file was generated using a modified C profile of libCellML 0.3.101. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.102. */ #include "customheaderfile.h" diff --git a/tests/resources/generator/coverage/model.py b/tests/resources/generator/coverage/model.py index 8f25af6374..96c4c6fe5f 100644 --- a/tests/resources/generator/coverage/model.py +++ b/tests/resources/generator/coverage/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 186 diff --git a/tests/resources/generator/dependent_eqns/model.c b/tests/resources/generator/dependent_eqns/model.c index 888e854068..62e17a8dac 100644 --- a/tests/resources/generator/dependent_eqns/model.c +++ b/tests/resources/generator/dependent_eqns/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/dependent_eqns/model.h b/tests/resources/generator/dependent_eqns/model.h index 5f1020567a..ef29e09433 100644 --- a/tests/resources/generator/dependent_eqns/model.h +++ b/tests/resources/generator/dependent_eqns/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/dependent_eqns/model.py b/tests/resources/generator/dependent_eqns/model.py index 06a1f88e43..469bffc717 100644 --- a/tests/resources/generator/dependent_eqns/model.py +++ b/tests/resources/generator/dependent_eqns/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.c b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.c index 1941a34c08..cba07ad063 100644 --- a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.c +++ b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 33; const size_t VARIABLE_COUNT = 217; diff --git a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.h b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.h index 39dc402692..b235cd5144 100644 --- a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.h +++ b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.py b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.py index 17aee6077f..69cb40453c 100644 --- a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.py +++ b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 33 VARIABLE_COUNT = 217 diff --git a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.c b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.c index 78d37a9092..60a2631229 100644 --- a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.c +++ b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 15; const size_t VARIABLE_COUNT = 185; diff --git a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.h b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.h index 7ecb7a9a22..a3776bac68 100644 --- a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.h +++ b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.py b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.py index 43e859ac37..df48cda009 100644 --- a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.py +++ b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 15 VARIABLE_COUNT = 185 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.c index dbabe3e2c5..ef0ff47872 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.algebraic.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.h index 2badbf8143..919bedf88a 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.py index e8dbc4d01f..5be4825f5a 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.c index 7504642b68..8ae39768b2 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.c index d20f30b0b2..6b98e6b959 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.computed.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.h index 2badbf8143..919bedf88a 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.py index c961c53b49..e4c0e5312e 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.c index fc2f58a924..2a3589c6cd 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.h index 2badbf8143..919bedf88a 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.py index bead93a138..da66ec5026 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.c index 11c41c8523..35b5a7ea51 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.dependent.algebraic.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.h index 2badbf8143..919bedf88a 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.py index 7153325187..26fb43b586 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.c index 20cbcb30bc..a851eb3ce8 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.dependent.computed.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.h index 2badbf8143..919bedf88a 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.py index e3f43c4dfc..e969e3d3e2 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.c index 12b38ab30e..e457458995 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.dependent.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.h index 2badbf8143..919bedf88a 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.py index 42991ea1d1..ae140cb3c1 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.c index 9f1ae4e0bf..bb196ae30b 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.dependent.state.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 20; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.h index 2badbf8143..919bedf88a 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.py index be2591008f..311f271d97 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 20 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.c index d75678f1ed..56c688800d 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.external.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 3; const size_t VARIABLE_COUNT = 19; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.h index 2badbf8143..919bedf88a 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.py index 6c6fd88b44..0d99e90afa 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 3 VARIABLE_COUNT = 19 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.h index 6b17ea1487..a088d835c5 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.py index 9b985b9615..2d2c5a3175 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.c index b612dd1949..4ea8fe6d22 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.state.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 3; const size_t VARIABLE_COUNT = 19; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.h index 2badbf8143..919bedf88a 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.py index 7fd107ef1c..6384e6d3be 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 3 VARIABLE_COUNT = 19 diff --git a/tests/resources/generator/noble_model_1962/model.c b/tests/resources/generator/noble_model_1962/model.c index 7919508c4e..a32ff1c5bf 100644 --- a/tests/resources/generator/noble_model_1962/model.c +++ b/tests/resources/generator/noble_model_1962/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 17; diff --git a/tests/resources/generator/noble_model_1962/model.h b/tests/resources/generator/noble_model_1962/model.h index bb24f4a68b..8bccadd799 100644 --- a/tests/resources/generator/noble_model_1962/model.h +++ b/tests/resources/generator/noble_model_1962/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/noble_model_1962/model.py b/tests/resources/generator/noble_model_1962/model.py index 7388ed1dc5..8d166247c1 100644 --- a/tests/resources/generator/noble_model_1962/model.py +++ b/tests/resources/generator/noble_model_1962/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 17 diff --git a/tests/resources/generator/ode_computed_var_on_rhs/model.c b/tests/resources/generator/ode_computed_var_on_rhs/model.c index 8791da0dc8..3a51dcd41d 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs/model.c +++ b/tests/resources/generator/ode_computed_var_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_computed_var_on_rhs/model.h b/tests/resources/generator/ode_computed_var_on_rhs/model.h index 3c72fd035a..1e6ad749c8 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs/model.h +++ b/tests/resources/generator/ode_computed_var_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_computed_var_on_rhs/model.py b/tests/resources/generator/ode_computed_var_on_rhs/model.py index e4048e0f85..a34f4e23f5 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs/model.py +++ b/tests/resources/generator/ode_computed_var_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.c b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.c index 31725b70c6..0f4e21e33e 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.c +++ b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.h b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.h index 6e4dda05b6..2eee2705a8 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.h +++ b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.py b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.py index 150c50725b..1d5bde9171 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.py +++ b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_const_var_on_rhs/model.c b/tests/resources/generator/ode_const_var_on_rhs/model.c index 8919814b9d..8a83a0aedb 100644 --- a/tests/resources/generator/ode_const_var_on_rhs/model.c +++ b/tests/resources/generator/ode_const_var_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_const_var_on_rhs/model.h b/tests/resources/generator/ode_const_var_on_rhs/model.h index 3c72fd035a..1e6ad749c8 100644 --- a/tests/resources/generator/ode_const_var_on_rhs/model.h +++ b/tests/resources/generator/ode_const_var_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_const_var_on_rhs/model.py b/tests/resources/generator/ode_const_var_on_rhs/model.py index 3d1528b807..71c65e5ec5 100644 --- a/tests/resources/generator/ode_const_var_on_rhs/model.py +++ b/tests/resources/generator/ode_const_var_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.c b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.c index 76c5dfd784..9b716933bb 100644 --- a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.c +++ b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.h b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.h index 6e4dda05b6..2eee2705a8 100644 --- a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.h +++ b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.py b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.py index a27cdcfda0..6fb356c598 100644 --- a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.py +++ b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_constant_on_rhs/model.c b/tests/resources/generator/ode_constant_on_rhs/model.c index ed422ab7fd..48ff296d5b 100644 --- a/tests/resources/generator/ode_constant_on_rhs/model.c +++ b/tests/resources/generator/ode_constant_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 0; diff --git a/tests/resources/generator/ode_constant_on_rhs/model.h b/tests/resources/generator/ode_constant_on_rhs/model.h index 3c72fd035a..1e6ad749c8 100644 --- a/tests/resources/generator/ode_constant_on_rhs/model.h +++ b/tests/resources/generator/ode_constant_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_constant_on_rhs/model.py b/tests/resources/generator/ode_constant_on_rhs/model.py index b80bc8c272..50471b72cc 100644 --- a/tests/resources/generator/ode_constant_on_rhs/model.py +++ b/tests/resources/generator/ode_constant_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 0 diff --git a/tests/resources/generator/ode_constant_on_rhs_one_component/model.c b/tests/resources/generator/ode_constant_on_rhs_one_component/model.c index 1ed3d8b32e..591daaa83c 100644 --- a/tests/resources/generator/ode_constant_on_rhs_one_component/model.c +++ b/tests/resources/generator/ode_constant_on_rhs_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 0; diff --git a/tests/resources/generator/ode_constant_on_rhs_one_component/model.h b/tests/resources/generator/ode_constant_on_rhs_one_component/model.h index 6e4dda05b6..2eee2705a8 100644 --- a/tests/resources/generator/ode_constant_on_rhs_one_component/model.h +++ b/tests/resources/generator/ode_constant_on_rhs_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_constant_on_rhs_one_component/model.py b/tests/resources/generator/ode_constant_on_rhs_one_component/model.py index 87d304ddcf..8d1d820574 100644 --- a/tests/resources/generator/ode_constant_on_rhs_one_component/model.py +++ b/tests/resources/generator/ode_constant_on_rhs_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 0 diff --git a/tests/resources/generator/ode_multiple_dependent_odes/model.c b/tests/resources/generator/ode_multiple_dependent_odes/model.c index bbf795b4b4..db49e4925d 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes/model.c +++ b/tests/resources/generator/ode_multiple_dependent_odes/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_multiple_dependent_odes/model.h b/tests/resources/generator/ode_multiple_dependent_odes/model.h index eae840cdf9..a94e78905c 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes/model.h +++ b/tests/resources/generator/ode_multiple_dependent_odes/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_multiple_dependent_odes/model.py b/tests/resources/generator/ode_multiple_dependent_odes/model.py index 6868dd7203..2c98dfd1d3 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes/model.py +++ b/tests/resources/generator/ode_multiple_dependent_odes/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.c b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.c index d87b74d6dc..4ea6cc07f9 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.c +++ b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.h b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.h index 6e011cc0b9..5b5686e33a 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.h +++ b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.py b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.py index b93f1421f9..2981a40c1d 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.py +++ b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_multiple_odes_with_same_name/model.c b/tests/resources/generator/ode_multiple_odes_with_same_name/model.c index 6f1263cc76..0642e7db60 100644 --- a/tests/resources/generator/ode_multiple_odes_with_same_name/model.c +++ b/tests/resources/generator/ode_multiple_odes_with_same_name/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_multiple_odes_with_same_name/model.h b/tests/resources/generator/ode_multiple_odes_with_same_name/model.h index 12267c2474..dd22007569 100644 --- a/tests/resources/generator/ode_multiple_odes_with_same_name/model.h +++ b/tests/resources/generator/ode_multiple_odes_with_same_name/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_multiple_odes_with_same_name/model.py b/tests/resources/generator/ode_multiple_odes_with_same_name/model.py index 99348ef48f..4eaf00009c 100644 --- a/tests/resources/generator/ode_multiple_odes_with_same_name/model.py +++ b/tests/resources/generator/ode_multiple_odes_with_same_name/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/sine_model_imports/model.c b/tests/resources/generator/sine_model_imports/model.c index 890fc88537..4f881d5785 100644 --- a/tests/resources/generator/sine_model_imports/model.c +++ b/tests/resources/generator/sine_model_imports/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 10; diff --git a/tests/resources/generator/sine_model_imports/model.h b/tests/resources/generator/sine_model_imports/model.h index d35b29bf03..bbf9d8edd2 100644 --- a/tests/resources/generator/sine_model_imports/model.h +++ b/tests/resources/generator/sine_model_imports/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/sine_model_imports/model.py b/tests/resources/generator/sine_model_imports/model.py index 891c17c5ae..3044a7165b 100644 --- a/tests/resources/generator/sine_model_imports/model.py +++ b/tests/resources/generator/sine_model_imports/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 10 diff --git a/tests/version/version.cpp b/tests/version/version.cpp index 0d98cd30aa..3644a0bbe4 100644 --- a/tests/version/version.cpp +++ b/tests/version/version.cpp @@ -5,8 +5,8 @@ TEST(Version, versionMatch) { unsigned int version = libcellml::version(); - EXPECT_EQ(0x0003101U, version); + EXPECT_EQ(0x0003102U, version); std::string versionString = libcellml::versionString(); - EXPECT_EQ("0.3.101", versionString); + EXPECT_EQ("0.3.102", versionString); }