@@ -340,7 +340,7 @@ function ExaModels.jprod_nln!(
340340 x:: AbstractVector ,
341341 v:: AbstractVector ,
342342 Jv:: AbstractVector ,
343- ) where {T,VT,N <: NamedTuple , E<: KAExtension{T,VT,N} }
343+ ) where {T,VT,N<: NamedTuple ,E<: KAExtension{T,VT,N} }
344344
345345 fill! (Jv, zero (eltype (Jv)))
346346 fill! (m. ext. prodhelper. jacbuffer, zero (eltype (Jv)))
@@ -362,7 +362,7 @@ function ExaModels.jtprod_nln!(
362362 x:: AbstractVector ,
363363 v:: AbstractVector ,
364364 Jtv:: AbstractVector ,
365- ) where {T,VT,N <: NamedTuple , E<: KAExtension{T,VT,N} }
365+ ) where {T,VT,N<: NamedTuple ,E<: KAExtension{T,VT,N} }
366366
367367 fill! (Jtv, zero (eltype (Jtv)))
368368 fill! (m. ext. prodhelper. jacbuffer, zero (eltype (Jtv)))
@@ -386,13 +386,13 @@ function ExaModels.hprod!(
386386 v:: AbstractVector ,
387387 Hv:: AbstractVector ;
388388 obj_weight = one (eltype (x)),
389- ) where {T,VT,N <: NamedTuple , E<: KAExtension{T,VT,N} }
389+ ) where {T,VT,N<: NamedTuple ,E<: KAExtension{T,VT,N} }
390390
391391 if isnothing (m. ext. prodhelper)
392392 error (" Prodhelper is not defined. Use ExaModels(c; prod=true) to use hprod!" )
393393 end
394394
395- fill! (Hv, zero (eltype (Hv)))
395+ fill! (Hv, zero (eltype (Hv)))
396396 fill! (m. ext. prodhelper. hessbuffer, zero (eltype (Hv)))
397397
398398 _obj_hess_coord! (m. ext. backend, m. ext. prodhelper. hessbuffer, m. objs, x, obj_weight)
@@ -459,7 +459,7 @@ function ExaModels.hess_coord!(
459459 y:: V ,
460460 hess:: V ;
461461 obj_weight = one (eltype (y)),
462- ) where {T,VT,E<: KAExtension , V<: AbstractVector }
462+ ) where {T,VT,E<: KAExtension ,V<: AbstractVector }
463463 fill! (hess, zero (eltype (hess)))
464464 _obj_hess_coord! (m. ext. backend, hess, m. objs, x, obj_weight)
465465 _con_hess_coord! (m. ext. backend, hess, m. cons, x, y)
0 commit comments