diff --git a/CMakeLists.txt b/CMakeLists.txt index 2290abfd95..7654941c64 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.103) +set(_PROJECT_VERSION 0.3.104) set(PROJECT_DEVELOPER_VERSION ) project(${PROJECT_NAME} VERSION ${_PROJECT_VERSION} LANGUAGES CXX) diff --git a/cmake/TestUndefinedSymbolsAllowed.cmake b/cmake/TestUndefinedSymbolsAllowed.cmake new file mode 100644 index 0000000000..2ca8d89425 --- /dev/null +++ b/cmake/TestUndefinedSymbolsAllowed.cmake @@ -0,0 +1,65 @@ +# Function: TestUndefinedSymbolsAllowed +# +# Test if the linker allows undefined symbols for shared libraries. +# +# UNDEFINED_SYMBOLS_ALLOWED - true if the linker will allow +# undefined symbols for shared libraries +# + +function(Test_Undefined_Symbols_Allowed) + + set(_VAR_NAME "UNDEFINED_SYMBOLS_ALLOWED") + set(_HASH_VAR_NAME "HASH_${_VAR_NAME}") + + # hash the CMAKE_FLAGS passed and check cache to know if we need to rerun + string(MD5 cmake_flags_hash "${CMAKE_SHARED_LINKER_FLAGS}") + + if(NOT DEFINED "${_HASH_VAR_NAME}") + unset("${_VAR_NAME}" CACHE) + elseif(NOT "${${_HASH_VAR_NAME}}" STREQUAL "${cmake_flags_hash}") + unset("${_VAR_NAME}" CACHE) + endif() + + if(NOT DEFINED "${_VAR_NAME}") + message(STATUS "Performing Test ${_VAR_NAME} - ...") + set(test_project_dir "${PROJECT_BINARY_DIR}/CMakeTmp/${_VAR_NAME}") + + file(WRITE "${test_project_dir}/CMakeLists.txt" +" +project(undefined CXX) +add_library(foo SHARED \"foo.cpp\") +") + + file(WRITE "${test_project_dir}/foo.cpp" +" +extern int bar(void); +int foo(void) {return bar()+1;} +") + + if(APPLE) + set(_rpath_arg "-DCMAKE_MACOSX_RPATH='${CMAKE_MACOSX_RPATH}'") + else() + set(_rpath_arg) + endif() + + try_compile(${_VAR_NAME} + "${test_project_dir}" + "${test_project_dir}" + undefined + CMAKE_FLAGS + "-DCMAKE_SHARED_LINKER_FLAGS='${CMAKE_SHARED_LINKER_FLAGS}'" + ${_rpath_arg} + OUTPUT_ _VAR_NAME output) + + set(${_HASH_VAR_NAME} "${cmake_flags_hash}" CACHE INTERNAL "hashed try_compile flags") + + if(${_VAR_NAME}) + message(STATUS "Performing Test ${_VAR_NAME} - Success") + else() + message(STATUS "Performing Test ${_VAR_NAME} - Failed") + file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log + "Performing Test ${_VAR_NAME} failed with the following output:\n" + "${OUTPUT}\n") + endif() + endif() +endfunction() diff --git a/cmake/add_rpath_for_python.cmake b/cmake/add_rpath_for_python.cmake deleted file mode 100644 index 63574934ea..0000000000 --- a/cmake/add_rpath_for_python.cmake +++ /dev/null @@ -1,10 +0,0 @@ - -# Make the SWIG generated Python interface modules more portable by using rpath for the the Python dynamic library. -string(REPLACE "${LIST_SEPARATOR}" ";" SHARED_OBJECT_MODULES "${SHARED_OBJECT_MODULES}") -foreach(_M ${SHARED_OBJECT_MODULES}) - execute_process(COMMAND ${INSTALL_NAME_TOOL_EXE} -change "/Library/Frameworks/Python.framework/Versions/${Python_VERSION_MAJOR}.${Python_VERSION_MINOR}/Python" @rpath/Python.framework/Versions/${Python_VERSION_MAJOR}.${Python_VERSION_MINOR}/Python ${_M}) - execute_process(COMMAND ${INSTALL_NAME_TOOL_EXE} -add_rpath /Library/Frameworks ${_M}) - execute_process(COMMAND ${INSTALL_NAME_TOOL_EXE} -add_rpath /usr/local/Frameworks ${_M}) - execute_process(COMMAND ${INSTALL_NAME_TOOL_EXE} -add_rpath /opt/homebrew/Frameworks ${_M}) -endforeach() - diff --git a/cmake/environmentchecks.cmake b/cmake/environmentchecks.cmake index cb5a7a5ea0..fc4e04fd72 100644 --- a/cmake/environmentchecks.cmake +++ b/cmake/environmentchecks.cmake @@ -13,6 +13,7 @@ # limitations under the License. include(CheckCXXCompilerFlag) +include(TestUndefinedSymbolsAllowed) get_property(IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) @@ -30,6 +31,8 @@ else () set(_FIND_PYTHON_DEVELOPMENT_TYPE Development) endif() + test_undefined_symbols_allowed() + find_package(Python ${PREFERRED_PYTHON_VERSION} COMPONENTS Interpreter ${_FIND_PYTHON_DEVELOPMENT_TYPE}) find_program(BUILDCACHE_EXE buildcache) diff --git a/docs/changelogs/changelog_v0.3.104.rst b/docs/changelogs/changelog_v0.3.104.rst new file mode 100644 index 0000000000..aebd093921 --- /dev/null +++ b/docs/changelogs/changelog_v0.3.104.rst @@ -0,0 +1,15 @@ +libCellML v0.3.104 Changelog +============================ + +Python bindings +--------------- + +* Shift to use dynamic lookup for undefined symbols in shared libraries by `@hsorby `_ [`#1040 `_]. + +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 7280a19810..ec2936f273 100644 --- a/docs/changelogs/index.rst +++ b/docs/changelogs/index.rst @@ -4,6 +4,7 @@ Changelogs .. toctree:: + changelog_v0.3.104 changelog_v0.3.103 changelog_v0.3.102 changelog_v0.3.101 diff --git a/docs/index.rst b/docs/index.rst index e5f079179f..c19e6c717b 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -37,6 +37,7 @@ Changelogs .. toctree:: + changelogs/changelog_v0.3.104 changelogs/changelog_v0.3.103 changelogs/changelog_v0.3.102 changelogs/changelog_v0.3.101 diff --git a/src/bindings/python/CMakeLists.txt b/src/bindings/python/CMakeLists.txt index 7ee8fbfe79..3ef7740589 100644 --- a/src/bindings/python/CMakeLists.txt +++ b/src/bindings/python/CMakeLists.txt @@ -112,10 +112,25 @@ foreach(SWIG_INTERFACE_SRC ${SWIG_INTERFACE_SRCS}) if(NOT POLICY CMP0078) set(MODULE_TARGET ${SWIG_MODULE_${MODULE_TARGET}_REAL_NAME}) endif() + target_link_libraries(${MODULE_TARGET} PRIVATE cellml) + if(FIND_PYTHON_DEVELOPMENT_MODULE) - target_link_libraries(${MODULE_TARGET} PRIVATE cellml Python::Module) + set(_PYTHON_LINK_TARGET Python::Module) else() - target_link_libraries(${MODULE_TARGET} PRIVATE cellml Python::Python) + set(_PYTHON_LINK_TARGET Python::Python) + endif() + + if (APPLE) + # Specifically allow dynamic lookup, here we are really targetting Python symbols. + set_target_properties(${MODULE_TARGET} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup") + # But, we do need to know about the Python include directories. + target_include_directories(${MODULE_TARGET} PRIVATE ${Python_INCLUDE_DIRS}) + elseif (UNDEFINED_SYMBOLS_ALLOWED) + # Linker allows undefined symbols, so let's not link Python. + # But, we do need to know about the Python include directories. + target_include_directories(${MODULE_TARGET} PRIVATE ${Python_INCLUDE_DIRS}) + else() + target_link_libraries(${MODULE_TARGET} PRIVATE ${_PYTHON_LINK_TARGET}) endif() # Disable use of Debug Python libraries when not present on Windows # See http://stackoverflow.com/questions/11311877/creating-a-dll-from-a-wrapped-cpp-file-with-swig @@ -179,26 +194,6 @@ add_custom_command(TARGET python_bindings POST_BUILD set_property(DIRECTORY APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${LIBCELLML_PYTHON_PACKAGE_DIR} ${SWIG_GENERATED_INTERMEDIARIES_FILES_DIR}) if(SKBUILD) - if(INSTALL_NAME_TOOL_AVAILABLE) - set(LIST_SEPARATOR "") - set(_ARGS) - foreach(_SOME ${SWIG_PYTHON_BINDINGS_TARGETS}) - list(APPEND _ARGS $) - endforeach() - - set(_ARGS_STR "${_ARGS}") - string(REPLACE ";" "${LIST_SEPARATOR}" _ARGS_STR "${_ARGS_STR}") - add_custom_command(TARGET python_bindings POST_BUILD - COMMAND ${CMAKE_COMMAND} - -DSHARED_OBJECT_MODULES="${_ARGS_STR}" - -DLIST_SEPARATOR="${LIST_SEPARATOR}" - -DINSTALL_NAME_TOOL_EXE="${INSTALL_NAME_TOOL_EXE}" - -DPython_VERSION_MAJOR="${Python_VERSION_MAJOR}" - -DPython_VERSION_MINOR="${Python_VERSION_MINOR}" - -P ${PROJECT_SOURCE_DIR}/cmake/add_rpath_for_python.cmake - ) - endif() - install(TARGETS ${SWIG_PYTHON_BINDINGS_TARGETS} COMPONENT wheel DESTINATION libcellml @@ -221,4 +216,3 @@ if(SKBUILD) DEPENDS ${SWIG_PYTHON_BINDINGS_TARGETS} ) endif() - diff --git a/tests/bindings/javascript/version.test.js b/tests/bindings/javascript/version.test.js index 0bc38117d0..52df975275 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.103'); + expect(libcellml.versionString()).toBe('0.3.104'); }); }) 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 96c6acc0fd..a5d4f92caf 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 6a2fe338ae..1758b47f2d 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.external.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 089ea3dcb8..05f727d019 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 481fd88860..32ec79be61 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 2994b2cfe8..2572af446a 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 49252777b5..82285c797a 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 956dd39f1a..bfee6ee33c 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 2994b2cfe8..2572af446a 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 a81fe5b1d0..57b2dd410c 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 87f43294d0..c7ab870ac2 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 f5efd7f65f..abd6a1a3bb 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 7c15b7f435..6fa0974400 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 5823059a66..f10ba703d2 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 ce065e706e..f909f0714f 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 853b23f9b5..4d08d56c84 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 27cf45a82b..66ee45378f 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 aa37a9d0be..76b1d8b93e 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 516859bc44..b8af7e8956 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 2c0be03551..70fb9c005a 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 0900ec8d0c..94749d715d 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 601865a335..3bab6639ab 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 0d40f837bf..bc057fcb16 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 893380c16f..aa16fe17c3 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 193e0d9ce8..cd4e949e98 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 edabf43170..7cfbc7db6e 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 8bcdb11828..d21313668d 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.external.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 a396407d4a..7ee996c1c2 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 7e60ff7d74..bf583cfb24 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" VARIABLE_COUNT = 4 diff --git a/tests/resources/generator/cell_geometry_model/model.h b/tests/resources/generator/cell_geometry_model/model.h index f708165510..4e0931d0d7 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #pragma once diff --git a/tests/resources/generator/cell_geometry_model/model.py b/tests/resources/generator/cell_geometry_model/model.py index 4c078e5400..babd63a56f 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 b40570599d..28b50a4d05 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 09a1405b86..5ebb3d1499 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 8fbf035d1a..90ed7fe06d 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 a70844321c..c46458d6d9 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 4a8a3530dd..ddc0f52689 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 727000623a..072c5664ae 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 6b6d6aee91..4ebd9ad9b5 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 5dbff556bf..ace92962d4 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 93dbb57503..72a699a618 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 207ef1e076..68030ee855 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 4a8a3530dd..ddc0f52689 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 4716205de2..f3aa60a974 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 742c0b799c..84ef144116 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 4a8a3530dd..ddc0f52689 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 43545406ce..cc91b707b9 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 65dd9a0477..5377ace589 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 e30b962820..32b835cc0b 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 0bcf45cb1d..b24f324ffb 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 516fe63680..02f502b8cc 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 70481a1e82..c0142f4e1d 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 a3c4452cf0..b70251f0a1 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 99075e784f..a9ff45a4a7 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 7d6c0dccc4..a99bcb3e7d 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 9e39791d1d..c0ca39b792 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 52f7c3e576..ae2206fde2 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 4a8a3530dd..ddc0f52689 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 60c744975e..394b2f0dd2 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" STATE_COUNT = 2 VARIABLE_COUNT = 0 diff --git a/tests/resources/generator/coverage/model.c b/tests/resources/generator/coverage/model.c index a07ab82d88..5d5d157c8d 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 f39580b52c..28b95577d4 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #pragma once diff --git a/tests/resources/generator/coverage/model.implementation.out b/tests/resources/generator/coverage/model.implementation.out index c5faafa27d..3c452ab7d4 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.103. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.104. */ 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 37e0a8c282..cb84f2384b 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.103. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.104. */ #pragma once diff --git a/tests/resources/generator/coverage/model.modified.profile.c b/tests/resources/generator/coverage/model.modified.profile.c index d4d1db5a6f..dfbedcbf84 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.103. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0.post0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 69a979f5c7..d71ad2f130 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.103. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.104. */ #pragma once diff --git a/tests/resources/generator/coverage/model.modified.profile.py b/tests/resources/generator/coverage/model.modified.profile.py index d50c8cdd71..cc7bf4558a 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.103. +# The content of this file was generated using a modified Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0.post0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" STATE_COUNT = 1 VARIABLE_COUNT = 186 diff --git a/tests/resources/generator/coverage/model.out b/tests/resources/generator/coverage/model.out index d45a9fdcee..eb34fdc0a3 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.103. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.104. */ #include "customheaderfile.h" diff --git a/tests/resources/generator/coverage/model.py b/tests/resources/generator/coverage/model.py index 8c7430ed4f..c51b45e2ef 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 ff773cd77a..d36edb6358 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 ba0d8ebb72..2439d23804 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #pragma once diff --git a/tests/resources/generator/dependent_eqns/model.py b/tests/resources/generator/dependent_eqns/model.py index 9aa7157a35..b5c38ee376 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 f2ae3eeb89..3184aa8cf1 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 5796e10007..772f098212 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 d4b1acf5a2..1a259d9a7e 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 a96e795fd5..1c7e4d3214 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 bc13d821d7..3e34b15ff6 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 5c4183dfd5..d7a2a271a9 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 b52be5275a..6d522b03c3 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.algebraic.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 6ea680bb53..5f9048fb38 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 05243d4efa..40c4bc67cd 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 5ab6d10638..d8f77efbdd 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 fa365920ed..3014005e32 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.computed.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 6ea680bb53..5f9048fb38 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 9d8f557fe8..fa3b420835 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 da37a47ba3..252816041d 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 6ea680bb53..5f9048fb38 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 e382f9b52c..943639a371 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 bb4794a9ee..2e7a9390f2 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.dependent.algebraic.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 6ea680bb53..5f9048fb38 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 29892b6d42..75f37c4f1d 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 a1c8743cb3..5d075fa7aa 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.dependent.computed.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 6ea680bb53..5f9048fb38 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 1f0b18953c..c4d896a8a6 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 bc5244389b..f906a43b09 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.dependent.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 6ea680bb53..5f9048fb38 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 e0d4ac85af..51238cffae 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 a7609fac80..108844ad0e 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.dependent.state.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 6ea680bb53..5f9048fb38 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 43e952603a..fb7990e50e 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 b41728eae4..b1fbd50df0 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.external.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 6ea680bb53..5f9048fb38 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 156cf8541f..460779b601 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 515eb64e69..09d7099c50 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 8468c1e2e2..fb56bb62ea 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 1f668b9775..f0e12efd07 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.state.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 6ea680bb53..5f9048fb38 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 9b6609c8b8..41fdcae189 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 1fdd75e8fe..f9b2f1349a 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 0fc27f0612..3b4b90fb57 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #pragma once diff --git a/tests/resources/generator/noble_model_1962/model.py b/tests/resources/generator/noble_model_1962/model.py index 4e547f4aa1..04208eea83 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 6c9db4e743..b736d20102 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 7d6c0dccc4..a99bcb3e7d 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 e3568472f6..fc754c5a03 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 8ab79bf620..fcc63d3fe7 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 aa37a9d0be..76b1d8b93e 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 2493bed9d9..042d141252 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 b101f1af73..354fcf03c9 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 7d6c0dccc4..a99bcb3e7d 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 ae4606006c..1b9456cc7a 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 2073e3aa2d..3b66adec33 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 aa37a9d0be..76b1d8b93e 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 1eb712a7bb..755d720af1 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 8bef438ac6..eeb729e819 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 7d6c0dccc4..a99bcb3e7d 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 056ed8fc0a..e50554a5c0 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 2ce091776f..627e2d59ae 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 aa37a9d0be..76b1d8b93e 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 bdadf6a0f8..79c98ffe3d 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 360a9c0efd..49c5347517 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 d5efdcf37a..397fd311d1 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 2894b6483b..411a3f3ccd 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 725aebc55a..4478f1b095 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 7e3e3bf539..2deb724430 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 5b1392e2bf..be3b0e3f55 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 ae40a5745a..ac8fa676ba 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 638411f06d..8d4d518b13 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #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 63dd3b83f8..74869b752a 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" 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 4603910eb9..fd1e35c85f 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.103"; +const char LIBCELLML_VERSION[] = "0.3.104"; 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 8ebc5322eb..47a6d3466a 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.103. */ +/* The content of this file was generated using the C profile of libCellML 0.3.104. */ #pragma once diff --git a/tests/resources/generator/sine_model_imports/model.py b/tests/resources/generator/sine_model_imports/model.py index 701b861401..5b84e61074 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.103. +# The content of this file was generated using the Python profile of libCellML 0.3.104. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.103" +LIBCELLML_VERSION = "0.3.104" STATE_COUNT = 1 VARIABLE_COUNT = 10 diff --git a/tests/version/version.cpp b/tests/version/version.cpp index dbda4d46c9..ed43a97bb9 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(0x0003103U, version); + EXPECT_EQ(0x0003104U, version); std::string versionString = libcellml::versionString(); - EXPECT_EQ("0.3.103", versionString); + EXPECT_EQ("0.3.104", versionString); }