Skip to content

Commit

Permalink
Update Initialize.jl, fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sjdaines authored Nov 27, 2024
1 parent fb274a8 commit 0a36a5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Initialize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function initialize!(
@timeit "allocate_variables" PB.allocate_variables!(model, modeldata, 1; eltypemap, check_units_opt)

# check all variables allocated
PB.check_ready(model, modeldata; expect_hostdep_varnames)
PB.check_ready(model, modeldata)

# Create modeldata.solver_view_all for the entire model
if SolverView_all
Expand Down Expand Up @@ -146,4 +146,4 @@ function set_statevar_from_output!(modeldata, output::AbstractOutputWriter)
initial_state = get_statevar(modeldata.solver_view_all)

return initial_state
end
end

2 comments on commit 0a36a5c

@sjdaines
Copy link
Member 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/120285

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 v0.15.45 -m "<description of version>" 0a36a5ce715dec48855b8a9a47750ac1637c2c5d
git push origin v0.15.45

Please sign in to comment.