-
Notifications
You must be signed in to change notification settings - Fork 16
R2NLS solver for unconstrained nonlinear least-squares (NLS) problems
#311
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
Draft
farhadrclass
wants to merge
27
commits into
JuliaSmoothOptimizers:main
Choose a base branch
from
Farhad-phd:R2NLS_Aug_2025
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 3 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
3153824
Add R2NLS solver for nonlinear least-squares problems
farhadrclass e0fced6
Comment out problematic finalizer in QRMumpsSolver
farhadrclass 4685881
Remove redundant gradient computation in solve! function
farhadrclass cac85c4
Remove utilities and Arpack dependencies
farhadrclass 0744484
Add R2NLSParameterSet for parameter management
farhadrclass 1b74e6e
Addign R2N
farhadrclass cadfc69
Update test_HSL.jl
farhadrclass fea7e18
Update test_HSL.jl
farhadrclass 23de60c
HSL Test
farhadrclass 028dee2
Update R2N.jl
farhadrclass 4fdc20e
Update R2N.jl
farhadrclass 743c964
R2N_MA97
farhadrclass 21b4284
Update R2N.jl
farhadrclass f6171d4
Update R2N.jl
farhadrclass 99af7b2
1
farhadrclass 8df722c
first round for MA97
farhadrclass 4948aa0
Add ShiftedOperator and enhance R2N solver logic
farhadrclass 676fc76
Add tests and update R2N solver implementation
farhadrclass 7a5d4c0
Enable and update MA97 solver integration and tests
farhadrclass 83514db
Refactor MA97Solver for efficient value updates
farhadrclass 37ea24b
Update R2N.jl
farhadrclass 9052c46
Add and expand R2N and R2N_exact solver tests
farhadrclass 879d07a
Update R2N.jl
farhadrclass 5eb7380
Refactor subsolver argument to use keyword symbol
farhadrclass d6d9d4a
Update R2N.jl
farhadrclass f8b76a4
Refactor MA97Solver to generic HSLDirectSolver, add MA57 support
farhadrclass d139267
Update test_R2N.jl
farhadrclass File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,25 +3,37 @@ uuid = "10dff2fc-5484-5881-a0e0-c90441020f8a" | |||||
| version = "0.14.1" | ||||||
|
|
||||||
| [deps] | ||||||
| Arpack = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97" | ||||||
| GenericLinearAlgebra = "14197337-ba66-59df-a3e3-ca00e7dcff7a" | ||||||
| Krylov = "ba0b0d4f-ebba-5204-a429-3ac8c609bfb7" | ||||||
| LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||||||
| LinearOperators = "5c8ed15e-5a4c-59e4-a42b-c7e8811fb125" | ||||||
| Logging = "56ddb016-857b-54e1-b83d-db4d58db5568" | ||||||
| NLPModels = "a4795742-8479-5a88-8948-cc11e1c8c1a6" | ||||||
| NLPModelsModifiers = "e01155f1-5c6f-4375-a9d8-616dd036575f" | ||||||
| Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" | ||||||
| QRMumps = "422b30a1-cc69-4d85-abe7-cc07b540c444" | ||||||
| SolverCore = "ff4d7338-4cf1-434d-91df-b86cb86fb843" | ||||||
| SolverParameters = "d076d87d-d1f9-4ea3-a44b-64b4cdd1e470" | ||||||
| SolverTools = "b5612192-2639-5dc1-abfe-fbedd65fab29" | ||||||
| SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | ||||||
| SparseMatricesCOO = "fa32481b-f100-4b48-8dc8-c62f61b13870" | ||||||
| TSVD = "9449cd9e-2762-5aa3-a617-5413e99d722e" | ||||||
|
|
||||||
| [compat] | ||||||
| Krylov = "0.10.0" | ||||||
| Arpack = "0.5.4" | ||||||
| GenericLinearAlgebra = "0.3.18" | ||||||
| Krylov = "0.10.1" | ||||||
| LinearOperators = "2.0" | ||||||
| NLPModels = "0.21" | ||||||
| NLPModelsModifiers = "0.7" | ||||||
| QRMumps = "0.3.1" | ||||||
| SolverCore = "0.3" | ||||||
| SolverParameters = "0.1" | ||||||
| SolverTools = "0.9" | ||||||
| SparseArrays = "1.11.0" | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why do we want 1.10? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||
| SparseMatricesCOO = "0.2.5" | ||||||
| TSVD = "0.4.4" | ||||||
| julia = "1.10" | ||||||
|
|
||||||
| [extras] | ||||||
|
|
||||||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.