Skip to content

Commit aa9735c

Browse files
committed
up
1 parent 3b91b28 commit aa9735c

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

docs/src/assets/Project.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ QuasiMonteCarlo = "8a4e6c94-4038-4cdc-81c3-7e6ffdb2a71b"
2929
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
3030
SciMLSensitivity = "1ed8b502-d754-442c-8d5d-10ac956f44a1"
3131
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
32+
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
3233
SteadyStateDiffEq = "9672c7b4-1e72-59bd-8a11-6ac3964bc41f"
3334
StochasticDiffEq = "789caeaf-c7a9-5a7d-9973-96adeb23e2a0"
3435
StructuralIdentifiability = "220ca800-aa68-49bb-acd8-6037fa93a544"
@@ -54,12 +55,17 @@ ModelingToolkit = "9.15"
5455
NonlinearSolve = "3.12"
5556
Optim = "1.9"
5657
Optimization = "3.25"
58+
OptimizationBBO = "0.2.1"
59+
OptimizationNLopt = "0.2.1"
60+
OptimizationOptimJL = "0.3.1"
61+
OptimizationOptimisers = "0.2.1"
5762
OrdinaryDiffEq = "6.80.1"
5863
Plots = "1.40"
5964
QuasiMonteCarlo = "0.3"
6065
SciMLBase = "2.39"
6166
SciMLSensitivity = "7.60"
6267
SpecialFunctions = "2.4"
68+
StaticArrays = "1.9"
6369
SteadyStateDiffEq = "2.2"
6470
StochasticDiffEq = "6.65"
6571
StructuralIdentifiability = "0.5.7"

test/reactionsystem_core/events.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ let
9797
@test Symbolics.unwrap(rs_ce_de.α) isa Symbolics.BasicSymbolic{Int64}
9898
@test Symbolics.unwrap(rs_de.α) isa Symbolics.BasicSymbolic{Int64}
9999
@test Symbolics.unwrap(rs_ce_de.α) isa Symbolics.BasicSymbolic{Int64}
100-
@test getdescription(rs_ce_de.A) == "A species"
101-
@test getdescription(rs_de.A) == "A species"
102-
@test getdescription(rs_ce_de.A) == "A species"
100+
@test ModelingToolkit.getdescription(rs_ce_de.A) == "A species"
101+
@test ModelingToolkit.getdescription(rs_de.A) == "A species"
102+
@test ModelingToolkit.getdescription(rs_ce_de.A) == "A species"
103103

104104
# Tests that species/variables/parameters can be accessed correctly one a MTK problem have been created.
105105
u0 = [X => 1]

test/simulation_and_solving/simulate_SDEs.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,8 @@ let
244244
u0 = [:X1 => 500.0, :X2 => 500.0]
245245
p = [:p => 20.0, :d => 0.1, :η1 => 0.0, :η3 => 0.0, :η4 => 0.0, :k1 => 2.0, :k2 => 2.0, :par1 => 1000.0, :par2 => 1000.0]
246246

247-
@test getdescription(parameters(noise_scaling_network)[2]) == "Parameter par1"
248-
@test getdescription(parameters(noise_scaling_network)[5]) == "Parameter η2"
247+
@test ModelingToolkit.getdescription(parameters(noise_scaling_network)[2]) == "Parameter par1"
248+
@test ModelingToolkit.getdescription(parameters(noise_scaling_network)[5]) == "Parameter η2"
249249

250250
sprob = SDEProblem(noise_scaling_network, u0, (0.0, 1000.0), p)
251251
@test sprob.ps[:η1] == sprob.ps[:η2] == sprob.ps[:η3] == sprob.ps[:η4] == 0.0

0 commit comments

Comments
 (0)