Skip to content

Commit 5ca1074

Browse files
committed
chore: setup subprojects
1 parent 03527f9 commit 5ca1074

File tree

12 files changed

+162
-0
lines changed

12 files changed

+162
-0
lines changed

lib/NonlinearSolveFirstOrder/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Avik Pal
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name = "NonlinearSolveFirstOrder"
2+
uuid = "5959db7a-ea39-4486-b5fe-2dd0bf03d60d"
3+
authors = ["Avik Pal <[email protected]> and contributors"]
4+
version = "1.0.0"
5+
6+
[compat]
7+
Aqua = "0.8"
8+
ExplicitImports = "1.5"
9+
Hwloc = "3"
10+
InteractiveUtils = "<0.0.1, 1"
11+
NonlinearProblemLibrary = "0.1.2"
12+
Pkg = "1.10"
13+
ReTestItems = "1.24"
14+
StableRNGs = "1"
15+
Test = "1.10"
16+
julia = "1.10"
17+
18+
[extras]
19+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
20+
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
21+
Hwloc = "0e44f5e4-bd66-52a0-8798-143a42290a1d"
22+
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
23+
NonlinearProblemLibrary = "b7050fa9-e91f-4b37-bcee-a89a063da141"
24+
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
25+
ReTestItems = "817f1d60-ba6b-4fd5-9520-3cf149f6a823"
26+
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
27+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
28+
29+
[targets]
30+
test = ["Aqua", "ExplicitImports", "Hwloc", "InteractiveUtils", "NonlinearProblemLibrary", "Pkg", "ReTestItems", "StableRNGs", "Test"]
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module NonlinearSolveFirstOrder
2+
3+
end

lib/NonlinearSolveFirstOrder/test/runtests.jl

Whitespace-only changes.

lib/NonlinearSolveQuasiNewton/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Avik Pal
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name = "NonlinearSolveQuasiNewton"
2+
uuid = "9a2c21bd-3a47-402d-9113-8faf9a0ee114"
3+
authors = ["Avik Pal <[email protected]> and contributors"]
4+
version = "1.0.0"
5+
6+
[compat]
7+
Aqua = "0.8"
8+
ExplicitImports = "1.5"
9+
Hwloc = "3"
10+
InteractiveUtils = "<0.0.1, 1"
11+
NonlinearProblemLibrary = "0.1.2"
12+
Pkg = "1.10"
13+
ReTestItems = "1.24"
14+
StableRNGs = "1"
15+
Test = "1.10"
16+
julia = "1.10"
17+
18+
[extras]
19+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
20+
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
21+
Hwloc = "0e44f5e4-bd66-52a0-8798-143a42290a1d"
22+
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
23+
NonlinearProblemLibrary = "b7050fa9-e91f-4b37-bcee-a89a063da141"
24+
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
25+
ReTestItems = "817f1d60-ba6b-4fd5-9520-3cf149f6a823"
26+
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
27+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
28+
29+
[targets]
30+
test = ["Aqua", "ExplicitImports", "Hwloc", "InteractiveUtils", "NonlinearProblemLibrary", "Pkg", "ReTestItems", "StableRNGs", "Test"]
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module NonlinearSolveQuasiNewton
2+
3+
end

lib/NonlinearSolveQuasiNewton/test/runtests.jl

Whitespace-only changes.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Avik Pal
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name = "NonlinearSolveSpectralMethods"
2+
uuid = "26075421-4e9a-44e1-8bd1-420ed7ad02b2"
3+
authors = ["Avik Pal <[email protected]> and contributors"]
4+
version = "1.0.0"
5+
6+
[compat]
7+
Aqua = "0.8"
8+
ExplicitImports = "1.5"
9+
Hwloc = "3"
10+
InteractiveUtils = "<0.0.1, 1"
11+
NonlinearProblemLibrary = "0.1.2"
12+
Pkg = "1.10"
13+
ReTestItems = "1.24"
14+
StableRNGs = "1"
15+
Test = "1.10"
16+
julia = "1.10"
17+
18+
[extras]
19+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
20+
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
21+
Hwloc = "0e44f5e4-bd66-52a0-8798-143a42290a1d"
22+
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
23+
NonlinearProblemLibrary = "b7050fa9-e91f-4b37-bcee-a89a063da141"
24+
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
25+
ReTestItems = "817f1d60-ba6b-4fd5-9520-3cf149f6a823"
26+
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
27+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
28+
29+
[targets]
30+
test = ["Aqua", "ExplicitImports", "Hwloc", "InteractiveUtils", "NonlinearProblemLibrary", "Pkg", "ReTestItems", "StableRNGs", "Test"]

0 commit comments

Comments
 (0)