Skip to content

Commit b360566

Browse files
committed
changed: consistency for return values in f̂!
1 parent 9c7804b commit b360566

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/estimator/internal_model.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ It calls [`f!`](@ref) directly since this estimator does not augment the states.
177177
function f̂!(x̂0next, _ , k0, estim::InternalModel, model::NonLinModel, x̂0, u0, d0)
178178
f!(x̂0next, k0, model, x̂0, u0, d0, model.p)
179179
x̂0next .+= estim.f̂op .- estim.x̂op
180-
return x̂0next
180+
return nothing
181181
end
182182

183183
@doc raw"""

0 commit comments

Comments
 (0)