Skip to content

Commit

Permalink
qwe
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Sep 3, 2024
1 parent f514b65 commit 044830a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/generatorprofilesha1values.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace libcellml {
* The content of this file is generated, do not edit this file directly.
* See docs/dev_utilities.rst for further information.
*/
static const char C_GENERATOR_PROFILE_SHA1[] = "d6eb68ea6c727f6ad7921b48c93f52a74b1a6b7a";
static const char PYTHON_GENERATOR_PROFILE_SHA1[] = "0f17039c765a263f63bb34d791127ab9641470c0";
static const char C_GENERATOR_PROFILE_SHA1[] = "fa3f75379a700a120e5d12beb89d313e9510ed2a";
static const char PYTHON_GENERATOR_PROFILE_SHA1[] = "fc22a22d609aa28226d33398ce252683bb104ff5";

} // namespace libcellml
2 changes: 1 addition & 1 deletion tests/resources/coverage/generator/model.c
Original file line number Diff line number Diff line change
Expand Up @@ -651,5 +651,5 @@ void computeRates(double voi, double *states, double *rates, double *constants,
void computeVariables(double voi, double *states, double *rates, double *constants, double *computedConstants, double *algebraic, double *externals, ExternalVariable externalVariable)
{
externals[0] = externalVariable(voi, states, rates, constants, computedConstants, algebraic, externals, 0);
findRoot0(voi, states, rates, constants, computedConstants, algebraic);
findRoot0(voi, states, rates, constants, computedConstants, algebraic, externals);
}
Original file line number Diff line number Diff line change
Expand Up @@ -410,5 +410,5 @@ void computeRates(double voi, double *states, double *rates, double *constants,
void computeVariables(double voi, double *states, double *rates, double *constants, double *computedConstants, double *algebraic, double *externals, ExternalVariable externalVariable)
{
externals[0] = externalVariable(voi, states, rates, constants, computedConstants, algebraic, externals, 0);
findRoot0(voi, states, rates, constants, computedConstants, algebraic);
findRoot0(voi, states, rates, constants, computedConstants, algebraic, externals);
}
Original file line number Diff line number Diff line change
Expand Up @@ -651,5 +651,5 @@ void computeRates(double voi, double *states, double *rates, double *constants,
void computeVariables(double voi, double *states, double *rates, double *constants, double *computedConstants, double *algebraic, double *externals, ExternalVariable externalVariable)
{
externals[0] = externalVariable(voi, states, rates, constants, computedConstants, algebraic, externals, 0);
findRoot0(voi, states, rates, constants, computedConstants, algebraic);
findRoot0(voi, states, rates, constants, computedConstants, algebraic, externals);
}
Original file line number Diff line number Diff line change
Expand Up @@ -615,4 +615,4 @@ def compute_rates(voi, states, rates, constants, computed_constants, algebraic,

def compute_variables(voi, states, rates, constants, computed_constants, algebraic, externals, external_variable):
externals[0] = external_variable(voi, states, rates, constants, computed_constants, algebraic, externals, 0)
find_root_0(voi, states, rates, constants, computed_constants, algebraic)
find_root_0(voi, states, rates, constants, computed_constants, algebraic, externals)
2 changes: 1 addition & 1 deletion tests/resources/coverage/generator/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,4 +615,4 @@ def compute_rates(voi, states, rates, constants, computed_constants, algebraic,

def compute_variables(voi, states, rates, constants, computed_constants, algebraic, externals, external_variable):
externals[0] = external_variable(voi, states, rates, constants, computed_constants, algebraic, externals, 0)
find_root_0(voi, states, rates, constants, computed_constants, algebraic)
find_root_0(voi, states, rates, constants, computed_constants, algebraic, externals)

0 comments on commit 044830a

Please sign in to comment.