@@ -23,9 +23,7 @@ ps = MTKParameters(sys, ivs)
23
23
24
24
ivs[a] = 1.0
25
25
ps = MTKParameters (sys, ivs)
26
- @test_broken getp (sys, g) # SII bug
27
26
for (p, val) in ivs
28
- isequal (p, g) && continue # broken
29
27
if isequal (p, c)
30
28
val = 3 ivs[a]
31
29
end
@@ -67,9 +65,8 @@ setp(sys, e)(ps, 5ones(3)) # with an array
67
65
setp (sys, f[2 , 2 ])(ps, 42 ) # with a sub-index
68
66
@test getp (sys, f[2 , 2 ])(ps) == 42
69
67
70
- # SII bug
71
- @test_broken setp (sys, g)(ps, ones (100 )) # with non-fixed-length array
72
- @test_broken getp (sys, g)(ps) == ones (100 )
68
+ setp (sys, g)(ps, ones (100 )) # with non-fixed-length array
69
+ @test getp (sys, g)(ps) == ones (100 )
73
70
74
71
setp (sys, h)(ps, " bar" ) # with a non-numeric
75
72
@test getp (sys, h)(ps) == " bar"
91
88
@test getp (sys, c)(newps) isa Float64
92
89
@test getp (sys, d)(newps) isa UInt8
93
90
@test getp (sys, f)(newps) isa Matrix{UInt}
94
- # SII bug
95
- @test_broken getp (sys, g)(newps) isa Vector{Float32}
91
+ @test getp (sys, g)(newps) isa Vector{Float32}
96
92
97
93
ps = MTKParameters (sys, ivs)
98
94
function loss (value, sys, ps)
0 commit comments