Skip to content

Commit

Permalink
Update ConfidenceRegions.jl
Browse files Browse the repository at this point in the history
Typo
  • Loading branch information
RafaelArutjunjan committed Dec 8, 2022
1 parent 89b4903 commit 683c54a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ConfidenceRegions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ function ConfidenceRegions(DM::AbstractDataModel, Confnums::AbstractVector{<:Rea
Prog = Progress(length(Range); enabled=verbose, desc="Computing boundaries... ", dt=1, showspeed=true)
sols = (parallel ? progress_pmap : progress_map)(x->ConfidenceRegion(DM, x; tol=tol, dof=dof, Boundaries=Boundaries, meth=meth, mfd=mfd, ADmode=ADmode, kwargs...), Range; progress=Prog)
if tests
NotTerminated = map(x->(x.retcode !=== SciMLBase.ReturnCode.Terminated), sols)
NotTerminated = map(x->!(x.retcode === SciMLBase.ReturnCode.Terminated), sols)
verbose && sum(NotTerminated) != 0 && @warn "Solutions $((1:length(sols))[NotTerminated]) did not exit properly."
roots = StructurallyIdentifiable(DM, sols; parallel=parallel)
Unidentifiables = map(x->(length(x) != 0), roots)
Expand Down

2 comments on commit 683c54a

@RafaelArutjunjan
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 updated: JuliaRegistries/General/73728

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.14.1 -m "<description of version>" 683c54a39ca71d8b8b5effda34ebe30bd9d4a550
git push origin v1.14.1

Please sign in to comment.