We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
get
The definition of the getter https://github.com/JuliaSmoothOptimizers/NLPModels.jl/blob/main/src/nls/tools.jl is overloading the classical getter. So, we get:
julia> using NLPModels, NLPModelsTest julia> nlp = LLS(); julia> (nlp.meta.nnzh, nlp.nls_meta.nnzh) (2, 0) julia> get_nnzh(nlp) 0 julia> nlp = NLSLC(); julia> (nlp.meta.nnzh, nlp.nls_meta.nnzh) (120, 15) julia> get_nnzh(nlp) 15
This is the error here JuliaSmoothOptimizers/NLPModelsTest.jl#60
The text was updated successfully, but these errors were encountered:
What's NLSLC?
NLSLC
Sorry, something went wrong.
These are test problems from NLPModelsTest.jl https://github.com/JuliaSmoothOptimizers/NLPModelsTest.jl/tree/main/src/nls/problems
No branches or pull requests
The definition of the getter https://github.com/JuliaSmoothOptimizers/NLPModels.jl/blob/main/src/nls/tools.jl is overloading the classical getter. So, we get:
This is the error here JuliaSmoothOptimizers/NLPModelsTest.jl#60
The text was updated successfully, but these errors were encountered: