Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/aqua' into aqua
Browse files Browse the repository at this point in the history
  • Loading branch information
pogudingleb committed Jan 30, 2024
2 parents c791f61 + ba33fd9 commit f3f9d6f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/SpellCheck.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/creating_ode.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/discrete.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down
2 changes: 1 addition & 1 deletion src/input_macro.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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...)
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f3f9d6f

Please sign in to comment.