From 0a0a7ed167ae8b93aef57cc6b00bfcc7489f8a37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Fri, 21 Feb 2020 14:33:09 +0100 Subject: [PATCH] Avoid multiplying quadratics --- Project.toml | 2 +- src/Test/sparse.jl | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 296bb4f..5eb77e1 100644 --- a/Project.toml +++ b/Project.toml @@ -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" diff --git a/src/Test/sparse.jl b/src/Test/sparse.jl index 5488679..7fedb41 100644 --- a/src/Test/sparse.jl +++ b/src/Test/sparse.jl @@ -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)