Skip to content

Commit

Permalink
Fix update! for TaylorN (#243)
Browse files Browse the repository at this point in the history
* fix update! for TaylorN

* update Project.toml
  • Loading branch information
Uziel Linares authored May 21, 2020
1 parent 234491b commit 22781aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TaylorSeries"
uuid = "6aa5eb33-94cf-58f4-a9d0-e4b2c4fc25ea"
repo = "https://github.com/JuliaDiff/TaylorSeries.jl.git"
version = "0.10.3"
version = "0.10.4"

[deps]
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
Expand Down
2 changes: 1 addition & 1 deletion src/other_functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ end

#update! function for TaylorN
function update!(a::TaylorN, vals::Vector{T}) where {T<:Number}
a.coeffs .= evaluate(a, get_variables() .+ vals).coeffs
a.coeffs .= evaluate(a, get_variables(a.order) .+ vals).coeffs
nothing
end

Expand Down

2 comments on commit 22781aa

@lbenet
Copy link
Member

@lbenet lbenet commented on 22781aa May 21, 2020

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/15119

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.10.4 -m "<description of version>" 22781aa2f60a107a68e7564a30af12f9e1e2c73b
git push origin v0.10.4

Please sign in to comment.