Skip to content

Commit

Permalink
Merge pull request #166 from cvsvensson/master
Browse files Browse the repository at this point in the history
fix exponential! example
  • Loading branch information
ChrisRackauckas authored Feb 15, 2024
2 parents 8e18f83 + c52d24d commit 4b524c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/exp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ Example
```julia-repl
julia> A = randn(50, 50);
julia> Acopy = B * 2;
julia> B = A * 2;
julia> method = ExpMethodHigham2005();
julia> cache = alloc_mem(A, method); # Main allocation done here
julia> cache = ExponentialUtilities.alloc_mem(A, method); # Main allocation done here
julia> E1 = exponential!(A, method, cache) # Very little allocation here
Expand Down

0 comments on commit 4b524c3

Please sign in to comment.