Skip to content

Commit

Permalink
Avoid multiplying quadratics
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat committed Feb 21, 2020
1 parent a002c70 commit 0a0a7ed
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MutableArithmetics"
uuid = "d8a4904e-b15c-11e9-3269-09a3773c0cb0"
authors = ["Gilles Peiffer", "Benoît Legat", "Sascha Timme"]
version = "0.2.5"
version = "0.2.6"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 0 additions & 2 deletions src/Test/sparse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ function sparse_linear_test(X11, X23, Xd)
0 0 0]

function _test_broadcast(A, B)
@test_rewrite(A .* B)
@test_rewrite(B .* A)
@test_rewrite(A .+ B)
@test_rewrite(B .+ A)
@test_rewrite(A .- B)
Expand Down

2 comments on commit 0a0a7ed

@blegat
Copy link
Member Author

@blegat blegat commented on 0a0a7ed Feb 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/9865

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.6 -m "<description of version>" 0a0a7ed167ae8b93aef57cc6b00bfcc7489f8a37
git push origin v0.2.6

Please sign in to comment.