From 2e9573e8142d944d81480e94567ea607478976ba Mon Sep 17 00:00:00 2001 From: gpogudin Date: Mon, 29 Jan 2024 16:18:47 +0100 Subject: [PATCH 1/3] fixing runtests --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index a6d23c66..e4a1b8f6 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -137,7 +137,7 @@ end @info "Testing started" -@time @testset "Quality Assurance" include("qa.jl") +@time include("qa.jl") all_tests = get_test_files(GROUP) if !isempty(ARGS) From d2ac99feb9becfcbc02139e13a1b20374aa780f6 Mon Sep 17 00:00:00 2001 From: gpogudin Date: Mon, 29 Jan 2024 16:33:35 +0100 Subject: [PATCH 2/3] at least fixing SpellCheck --- .github/workflows/SpellCheck.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/SpellCheck.yml b/.github/workflows/SpellCheck.yml index 3ccc0e5a..0fc32919 100644 --- a/.github/workflows/SpellCheck.yml +++ b/.github/workflows/SpellCheck.yml @@ -1,8 +1,8 @@ -iname: Spell Check +name: Spell Check - on: [pull_request] +on: [pull_request] - jobs: +jobs: typos-check: name: Spell Check with Typos runs-on: ubuntu-latest From ba33fd9f0bce9aee45b388e6da5cd096d97478f1 Mon Sep 17 00:00:00 2001 From: gpogudin Date: Mon, 29 Jan 2024 16:36:23 +0100 Subject: [PATCH 3/3] fixing typos --- docs/src/tutorials/creating_ode.md | 2 +- src/discrete.jl | 2 +- src/input_macro.jl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/tutorials/creating_ode.md b/docs/src/tutorials/creating_ode.md index 199e3815..915a742a 100644 --- a/docs/src/tutorials/creating_ode.md +++ b/docs/src/tutorials/creating_ode.md @@ -54,7 +54,7 @@ assess_identifiability(ode) ## Defining using `ModelingToolkit` -`StructuralIdentifiability` has an extension `ModelingToolkitExt` which allows to use `ODESystem` from `ModelingToolkit` to descibe +`StructuralIdentifiability` has an extension `ModelingToolkitExt` which allows to use `ODESystem` from `ModelingToolkit` to describe a model. The extension is loaded automatically once `ModelingToolkit` is loaded via `using ModelingToolkit`. In this case, one should encode the equations for the states as `ODESystem` and specify the outputs separately. In order to do this, we first introduce all functions and scalars: diff --git a/src/discrete.jl b/src/discrete.jl index 3a3f57ad..45bbe0c5 100644 --- a/src/discrete.jl +++ b/src/discrete.jl @@ -97,7 +97,7 @@ Input: - `num_terms` - number of terms to compute Output: -- computes a sequence solution with teh required number of terms prec presented as a dictionary state_variable => corresponding sequence +- computes a sequence solution with the required number of terms prec presented as a dictionary state_variable => corresponding sequence """ function sequence_solution( dds::DDS{P}, diff --git a/src/input_macro.jl b/src/input_macro.jl index 5dcb2f79..a4c8a6f1 100644 --- a/src/input_macro.jl +++ b/src/input_macro.jl @@ -297,7 +297,7 @@ Here, - `x1`, `x2` are state variables - `y` is an output variable - `u` is an input variable -- `a`, `b`, `c` are time-indepdendent parameters +- `a`, `b`, `c` are time-independent parameters """ macro DDSmodel(ex::Expr...)