Skip to content

Commit a41416d

Browse files
committed
previously failing tests now working
1 parent 2b3d07d commit a41416d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_high_precision_hinf.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ bb(P::AbstractStateSpace) = ss(bb.(ssdata_e(P)), P.timeevol)
1717
D21 = [0 1]
1818
D22 = [0;;]
1919
P = ss(A,B1,B2,C1,C2,D11,D12,D21,D22)
20-
K, γ = hinfsynthesize(P, γrel=1.05, ftype=BigFloat, check=false)[1:2] # gamma is way off (too low), but the actual realized gamma by the controller is quite close
21-
@test_broken hinfnorm2(lft(P, K)) 0.806 atol=1e-2
22-
@test_broken γ 0.806 atol=1e-2 # Not numerically robust enough to pass this test despite highprec
20+
K, γ = hinfsynthesize(P, γrel=1.05, ftype=BigFloat, check=false) # gamma is way off (too low), but the actual realized gamma by the controller is quite close
21+
@test hinfnorm2(lft(P, K))[1] 0.806 atol=1e-2
22+
@test γ 0.806 atol=1e-2 # Not numerically robust enough to pass this test despite highprec
2323

2424
end
2525

0 commit comments

Comments
 (0)