Skip to content

Commit

Permalink
Merge pull request #115 from avik-pal/ap/nlprob
Browse files Browse the repository at this point in the history
Move 23 test problems over from NonlinearSolve.jl
  • Loading branch information
ChrisRackauckas authored Sep 8, 2023
2 parents 83eaeb0 + 468fd96 commit 055ed25
Show file tree
Hide file tree
Showing 7 changed files with 529 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
- lib/ODEProblemLibrary
- lib/SDEProblemLibrary
- lib/BVProblemLibrary
- lib/NonlinearProblemLibrary
version:
- '1'
- '1.6'
Expand Down
2 changes: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ BVProblemLibrary = "ded0fc24-dfea-4565-b1d9-79c027d14d84"
DAEProblemLibrary = "dfb8ca35-80a1-48ba-a605-84916a45b4f8"
DDEProblemLibrary = "f42792ee-6ffc-4e2a-ae83-8ee2f22de800"
JumpProblemLibrary = "faf0f6d7-8cee-47cb-b27c-1eb80cef534e"
NonlinearProblemLibrary = "b7050fa9-e91f-4b37-bcee-a89a063da141"
ODEProblemLibrary = "fdc4e326-1af4-4b90-96e7-779fcce2daa5"
SDEProblemLibrary = "c72e72a9-a271-4b2b-8966-303ed956772e"

Expand All @@ -16,6 +17,7 @@ BVProblemLibrary = "0.1"
DAEProblemLibrary = "0.1"
DDEProblemLibrary = "0.1"
JumpProblemLibrary = "0.1"
NonlinearProblemLibrary = "0.1"
ODEProblemLibrary = "0.1"
SDEProblemLibrary = "0.1"
julia = "1.6"
20 changes: 20 additions & 0 deletions lib/NonlinearProblemLibrary/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
MIT License

Copyright (c) 2022 SciML
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
17 changes: 17 additions & 0 deletions lib/NonlinearProblemLibrary/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name = "NonlinearProblemLibrary"
uuid = "b7050fa9-e91f-4b37-bcee-a89a063da141"
version = "0.1.0"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"

[compat]
SciMLBase = "1"
julia = "1.6"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

[targets]
test = ["Aqua"]
Loading

2 comments on commit 055ed25

@avik-pal
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register subdir=lib/NonlinearProblemLibrary

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/91090

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a NonlinearProblemLibrary-v0.1.0 -m "<description of version>" 055ed25b4f7480a7ad6215a879235343981e6511
git push origin NonlinearProblemLibrary-v0.1.0

Please sign in to comment.