Skip to content

Commit

Permalink
version 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cganter committed Jan 17, 2025
1 parent 26e7faf commit ef243ca
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/test_BiExpDecay.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ rng = MersenneTwister(42)
# include Hessian in derivative test
Hessian = true

# minimal slope
min_slope = 0.8

# check out all nonempty combinations x_sym ⊆ sym
ts = collect(range(0, 5, 10)) # time points
sym = [:reR1, :imR1, :reR2, :imR2] # nonlinear variables: two complex relaxation rates
Expand All @@ -36,5 +39,5 @@ x_scale = ux - lx # to make different parameters more comparable
what = (:consistency, :derivatives, :optimization)

# do the tests
res = VP.check_model(BiExpDecay, args, x, c, y, what = what, x0 = x0, lx = lx, ux = ux, x_scale = x_scale, visual = visual, rng = rng, Hessian = Hessian)
res = VP.check_model(BiExpDecay, args, x, c, y, what = what, x0 = x0, lx = lx, ux = ux, x_scale = x_scale, visual = visual, rng = rng, Hessian = Hessian, min_slope = min_slope)

2 comments on commit ef243ca

@cganter
Copy link
Owner Author

Choose a reason for hiding this comment

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

@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/123195

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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 v1.0.4 -m "<description of version>" ef243caf83b5c04611da27976f83d00f5749ba02
git push origin v1.0.4

Please sign in to comment.