Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 2 additions & 13 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,12 @@
name: CI

on:
push:
branches:
- main
tags: '*'
pull_request:

jobs:
call:
strategy:
matrix:
version:
- '1.10'
- '1.11'
os:
- ubuntu-latest
arch:
- x64
uses: control-toolbox/CTActions/.github/workflows/ci.yml@main
with:
version: ${{ matrix.version }}
os: ${{ matrix.os }}
arch: ${{ matrix.arch }}
2 changes: 1 addition & 1 deletion docs/src-literate/bistable.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# # Bistable toggle switch

# The simplest GRN exhibiting bistability can be modeled through two variables $x_1$ and $x_2$ that mutually repress each othe. We suppose that the system can be externally controlled by a chemical inducer that targets the synthesis rates of both genes. The model is defined as
# The simplest GRN exhibiting bistability can be modeled through two variables $x_1$ and $x_2$ that mutually repress each other. We suppose that the system can be externally controlled by a chemical inducer that targets the synthesis rates of both genes. The model is defined as
# ```math
# \left\{ \begin{array}{l}
# \dot{x}_1 = -\gamma_1 x_1 + u(t) k_1 s^{-}(x_2,\theta_2) , \\
Expand Down
2 changes: 1 addition & 1 deletion docs/src-literate/oscillator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ ocp = @def begin
x₂(tf) == θ₂

uₘᵢₙ ≤ u(t) ≤ uₘₐₓ
tf ≥ 1 # Force the state out of the confort zone
tf ≥ 1 # Force the state out of the comfort zone

ẋ(t) == [
- γ₁*x₁(t) + k₁*u(t)*(1 - s⁺(x₂(t), θ₂, regMethod)),
Expand Down
2 changes: 1 addition & 1 deletion docs/src/bistable.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ EditURL = "../src-literate/bistable.jl"

# Bistable toggle switch

The simplest GRN exhibiting bistability can be modeled through two variables $x_1$ and $x_2$ that mutually repress each othe. We suppose that the system can be externally controlled by a chemical inducer that targets the synthesis rates of both genes. The model is defined as
The simplest GRN exhibiting bistability can be modeled through two variables $x_1$ and $x_2$ that mutually repress each other. We suppose that the system can be externally controlled by a chemical inducer that targets the synthesis rates of both genes. The model is defined as
```math
\left\{ \begin{array}{l}
\dot{x}_1 = -\gamma_1 x_1 + u(t) k_1 s^{-}(x_2,\theta_2) , \\
Expand Down
428 changes: 216 additions & 212 deletions docs/src/notebooks/bistable.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/src/notebooks/oscillator.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
" x₂(tf) == θ₂\n",
"\n",
" uₘᵢₙ ≤ u(t) ≤ uₘₐₓ\n",
" tf ≥ 1 # Force the state out of the confort zone\n",
" tf ≥ 1 # Force the state out of the comfort zone\n",
"\n",
" ẋ(t) == [\n",
" - γ₁*x₁(t) + k₁*u(t)*(1 - s⁺(x₂(t), θ₂, regMethod)),\n",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/oscillator.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ ocp = @def begin
x₂(tf) == θ₂

uₘᵢₙ ≤ u(t) ≤ uₘₐₓ
tf ≥ 1 # Force the state out of the confort zone
tf ≥ 1 # Force the state out of the comfort zone

ẋ(t) == [
- γ₁*x₁(t) + k₁*u(t)*(1 - s⁺(x₂(t), θ₂, regMethod)),
Expand Down
2 changes: 1 addition & 1 deletion docs/src/scripts/oscillator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ocp = @def begin
x₂(tf) == θ₂

uₘᵢₙ ≤ u(t) ≤ uₘₐₓ
tf ≥ 1 # Force the state out of the confort zone
tf ≥ 1 # Force the state out of the comfort zone

ẋ(t) == [
- γ₁*x₁(t) + k₁*u(t)*(1 - s⁺(x₂(t), θ₂, regMethod)),
Expand Down
Loading