Skip to content

Commit

Permalink
one more promotion (#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
jverzani authored Aug 14, 2023
1 parent 385bbea commit 34652cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Roots"
uuid = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
version = "2.0.18"
version = "2.0.19"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down
12 changes: 3 additions & 9 deletions src/Derivative/lith.jl
Original file line number Diff line number Diff line change
Expand Up @@ -463,15 +463,9 @@ function init_state(M::LithBoonkkampIJzermanBracket, F::Callable_Function, x)

# skip unit consideration here, as won't fit within storage of ys
state = LithBoonkkampIJzermanBracketState(
b, # xₙ
a, # xₙ₋₁
c,
fb, # fₙ
fa, # fₙ₋₁
fc,
f′b,
f′a,
f′c,
promote(b,a,c)..., # xₙ, xₙ₋₁
promote(fb, fa, fc)..., # fₙ, fₙ₋₁
promote(f′b, f′a, f′c)...
)

state
Expand Down

2 comments on commit 34652cc

@jverzani
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 created: JuliaRegistries/General/89596

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.0.19 -m "<description of version>" 34652cc2bfb2dd8d8e578e7deec5a4d39b6888c1
git push origin v2.0.19

Please sign in to comment.