Skip to content

Commit 96e6a4d

Browse files
committed
Fix return
1 parent 0b71c79 commit 96e6a4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ControlSystemsBase/ext/ControlSystemsBaseImplicitDifferentiationExt.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@ A reverse-differentiation rule is defined in RobustAndOptimalControl.jl, which m
224224
function hinfnorm(sys::StateSpace{Continuous, <:Dual}; kwargs...)
225225
A,B,C,D = ssdata(sys)
226226
pars = ComponentVector(; A,B,C,D)
227-
γ, w = implicit_hinfnorm(pars)
228-
γ, w
227+
γ_vec, w = implicit_hinfnorm(pars)
228+
only(γ_vec), w
229229
end
230230

231231

0 commit comments

Comments
 (0)