Skip to content

Commit 2f9935d

Browse files
committed
fix
1 parent bcd6250 commit 2f9935d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/core/icnf.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ function augmented_f(
141141
nn::LuxCore.AbstractLuxLayer,
142142
st::NamedTuple,
143143
ϵ::AbstractVector{T},
144-
) where {T <: AbstractFloat, COND, AUGMENTED, STEER, NORM_Z, NORM_J, REG}
144+
) where {T <: AbstractFloat, COND, AUGMENTED, STEER, NORM_Z, REG}
145145
n_aug = n_augment(icnf, mode)
146146
snn = LuxCore.StatefulLuxLayer{true}(nn, p, st)
147147
z = u[begin:(end - n_aug - 1)]
@@ -166,7 +166,7 @@ function augmented_f(
166166
nn::LuxCore.AbstractLuxLayer,
167167
st::NamedTuple,
168168
ϵ::AbstractMatrix{T},
169-
) where {T <: AbstractFloat, COND, AUGMENTED, STEER, NORM_Z, NORM_J, REG}
169+
) where {T <: AbstractFloat, COND, AUGMENTED, STEER, NORM_Z, REG}
170170
n_aug = n_augment(icnf, mode)
171171
snn = LuxCore.StatefulLuxLayer{true}(nn, p, st)
172172
z = u[begin:(end - n_aug - 1), :]
@@ -197,7 +197,7 @@ function augmented_f(
197197
nn::LuxCore.AbstractLuxLayer,
198198
st::NamedTuple,
199199
ϵ::AbstractMatrix{T},
200-
) where {T <: AbstractFloat, COND, AUGMENTED, STEER, NORM_Z, NORM_J, REG}
200+
) where {T <: AbstractFloat, COND, AUGMENTED, STEER, NORM_Z, REG}
201201
n_aug = n_augment(icnf, mode)
202202
snn = LuxCore.StatefulLuxLayer{true}(nn, p, st)
203203
z = u[begin:(end - n_aug - 1), :]

0 commit comments

Comments
 (0)