Skip to content

Commit 8c3467f

Browse files
remove unused barred variables
Co-authored-by: Frames White <oxinabox@ucc.asn.au>
1 parent ef72d49 commit 8c3467f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/rulesets/SparseArrays/sparsematrix.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ end
2323
@testset "without size" begin
2424
M, N = 7, 9
2525
s = (8, 8)
26-
a, ā = randn(M), randn(M)
27-
b, b̄ = randn(M), randn(M)
28-
c, c̄ = randn(M - 1), randn(M - 1)
26+
a = randn(M)
27+
b = randn(M)
28+
c = randn(M - 1)
2929
= randn(s)
3030
ps = (0 => a, 1 => b, 0 => c)
3131
y, back = rrule(spdiagm, ps...)
@@ -42,9 +42,9 @@ end
4242
end
4343
@testset "with size" begin
4444
M, N = 7, 9
45-
a, ā = randn(M), randn(M)
46-
b, b̄ = randn(M), randn(M)
47-
c, c̄ = randn(M - 1), randn(M - 1)
45+
a = randn(M)
46+
b = randn(M)
47+
c = randn(M - 1)
4848
= randn(M, N)
4949
ps = (0 => a, 1 => b, 0 => c)
5050
y, back = rrule(spdiagm, M, N, ps...)

0 commit comments

Comments
 (0)