Skip to content

Commit 1fcaa3a

Browse files
committed
Regenerate test models
1 parent 66f6c90 commit 1fcaa3a

26 files changed

Lines changed: 36 additions & 36 deletions

File tree

models/model_calvetti_py/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if(DEFINED ENV{AMICI_LDFLAGS})
4141
link_libraries("$ENV{AMICI_LDFLAGS}")
4242
endif()
4343

44-
find_package(Amici 1.0.0 REQUIRED HINTS
44+
find_package(Amici 1.0.1 REQUIRED HINTS
4545
${CMAKE_CURRENT_LIST_DIR}/../../build)
4646
message(STATUS "Found AMICI ${Amici_DIR}")
4747
set_target_properties(Upstream::amici PROPERTIES

models/model_calvetti_py/model_calvetti_py.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,15 +533,15 @@ class Model_model_calvetti_py : public amici::Model_DAE {
533533
* @return AMICI version string
534534
*/
535535
std::string get_amici_version() const override {
536-
return "1.0.0.dev";
536+
return "1.0.1.dev";
537537
}
538538

539539
/**
540540
* @brief returns the amici version that was used to generate the model
541541
* @return AMICI git commit hash
542542
*/
543543
std::string get_amici_commit() const override {
544-
return "2b036e909775bc4645c617839fb23d3ed5f07421";
544+
return "39afcefa103c861d4efecc0d15196bab302eba69";
545545
}
546546

547547
bool has_quadratic_llh() const override {

models/model_calvetti_py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_extension() -> CMakeExtension:
8989
author_email="model-author-todo",
9090
ext_modules=[MODEL_EXT],
9191
packages=find_namespace_packages(),
92-
install_requires=["amici==1.0.0.dev"],
92+
install_requires=["amici==1.0.1.dev"],
9393
python_requires=">=3.11",
9494
package_data={},
9595
zip_safe=False,

models/model_dirac_py/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if(DEFINED ENV{AMICI_LDFLAGS})
4141
link_libraries("$ENV{AMICI_LDFLAGS}")
4242
endif()
4343

44-
find_package(Amici 1.0.0 REQUIRED HINTS
44+
find_package(Amici 1.0.1 REQUIRED HINTS
4545
${CMAKE_CURRENT_LIST_DIR}/../../build)
4646
message(STATUS "Found AMICI ${Amici_DIR}")
4747
set_target_properties(Upstream::amici PROPERTIES

models/model_dirac_py/model_dirac_py.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,15 +520,15 @@ class Model_model_dirac_py : public amici::Model_ODE {
520520
* @return AMICI version string
521521
*/
522522
std::string get_amici_version() const override {
523-
return "1.0.0.dev";
523+
return "1.0.1.dev";
524524
}
525525

526526
/**
527527
* @brief returns the amici version that was used to generate the model
528528
* @return AMICI git commit hash
529529
*/
530530
std::string get_amici_commit() const override {
531-
return "2b036e909775bc4645c617839fb23d3ed5f07421";
531+
return "39afcefa103c861d4efecc0d15196bab302eba69";
532532
}
533533

534534
bool has_quadratic_llh() const override {

models/model_dirac_py/model_dirac_py/model_dirac_py.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file was automatically generated by SWIG (https://www.swig.org).
2-
# Version 4.4.0
2+
# Version 4.4.1
33
#
44
# Do not make changes to this file unless you know what you are doing - modify
55
# the SWIG interface file instead.

models/model_dirac_py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_extension() -> CMakeExtension:
8989
author_email="model-author-todo",
9090
ext_modules=[MODEL_EXT],
9191
packages=find_namespace_packages(),
92-
install_requires=["amici==1.0.0.dev"],
92+
install_requires=["amici==1.0.1.dev"],
9393
python_requires=">=3.11",
9494
package_data={},
9595
zip_safe=False,

models/model_events_py/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if(DEFINED ENV{AMICI_LDFLAGS})
4141
link_libraries("$ENV{AMICI_LDFLAGS}")
4242
endif()
4343

44-
find_package(Amici 1.0.0 REQUIRED HINTS
44+
find_package(Amici 1.0.1 REQUIRED HINTS
4545
${CMAKE_CURRENT_LIST_DIR}/../../build)
4646
message(STATUS "Found AMICI ${Amici_DIR}")
4747
set_target_properties(Upstream::amici PROPERTIES

models/model_events_py/model_events_py.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,15 +555,15 @@ class Model_model_events_py : public amici::Model_ODE {
555555
* @return AMICI version string
556556
*/
557557
std::string get_amici_version() const override {
558-
return "1.0.0.dev";
558+
return "1.0.1.dev";
559559
}
560560

561561
/**
562562
* @brief returns the amici version that was used to generate the model
563563
* @return AMICI git commit hash
564564
*/
565565
std::string get_amici_commit() const override {
566-
return "2b036e909775bc4645c617839fb23d3ed5f07421";
566+
return "39afcefa103c861d4efecc0d15196bab302eba69";
567567
}
568568

569569
bool has_quadratic_llh() const override {

models/model_events_py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_extension() -> CMakeExtension:
8989
author_email="model-author-todo",
9090
ext_modules=[MODEL_EXT],
9191
packages=find_namespace_packages(),
92-
install_requires=["amici==1.0.0.dev"],
92+
install_requires=["amici==1.0.1.dev"],
9393
python_requires=">=3.11",
9494
package_data={},
9595
zip_safe=False,

0 commit comments

Comments
 (0)