Skip to content

Commit

Permalink
runtests updated for ver 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shahriariravanian committed Mar 27, 2021
1 parent 0cc6fc1 commit 48cd476
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ version = "2.2.0"

[deps]
EzXML = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615"
JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
MathML = "abcecc63-2b08-419c-80c4-c63dca6fa478"
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
SymbolicUtils = "d1185830-fcd6-423d-90d6-eec64667417b"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

Expand Down
4 changes: 2 additions & 2 deletions test/beeler.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ err = sum(abs.(V1 .- V2)) / length(V1)
# @test err < 0.1

p = list_params(ml)
update_list!(p, "IstimPeriod", 280.0)
prob = ODEProblem(ml, (0,10000.0); jac=false, p=p)
update_list!(p, :stimulus_protocol₊IstimPeriod, 280.0)
prob = ODEProblem(ml, (0,10000.0); jac=false, p=last.(p))
sol4 = solve(prob, TRBDF2(), dtmax=0.5, saveat=1.0)
V4 = map(x -> x[1], sol2.u)
err = sum(abs.(V1[1:250] .- V4[1:250])) / 250
Expand Down

2 comments on commit 48cd476

@anandijain
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/32946

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v2.2.0 -m "<description of version>" 48cd476158f7ddf196df963135fd2ce92d4e55b3
git push origin v2.2.0

Please sign in to comment.