-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should warn for method overwritten in local scope #32635
Comments
Here is a simpler example: for i = 1:2
model() = i
println("1st: i = $i, f() = ", model())
model() = -i
println("2nd: i = $i, f() = ", model())
end which gives
The issue is that functions are constants in Julia: by defining That's why it works if you give them separate names, since it defines separate functions. If you just want to pass a function as a parameter or assign it to a variable, it would be more common to use an anonymous function: m2 = @. (x, p) -> p[1] * exp(p[2] * x) |
It would be nice for the compiler to give a warning if method definitions are overwritten in a local-scope block, since this is probably not the behavior that the user wanted. |
A comprehensive compiler warning sound like a wonderful option to clarify things. |
Always show the warning for anonymous functions, but update the verbiage to give additional information. This warning can still be avoided by explicitly calling delete_method first. fixes JuliaLang#32635 fixes JuliaLang#35140 refs JuliaLang#15602
What I want to do?
-> perform a LsqFit with different models to the same data
What works?
-> set of the variables outside a loop
What works not? -> declare und print(!) all in a loop
The values for the first model are exactly the same as for the second.
What worsk instead? -> As suggested by @pkofod in #JuliaNLSolvers/LsqFit.jl#125 a direct function declaration instead of assigning a variable.
What behaviour of the loop leads to wrong print inside the loop?
The text was updated successfully, but these errors were encountered: