-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #302 from avik-pal/ap/breaking
NonlinearSolve v3 Release
- Loading branch information
Showing
54 changed files
with
1,341 additions
and
581 deletions.
There are no files selected for viewing
This file contains 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 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 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 |
---|---|---|
@@ -1,21 +1,22 @@ | ||
using Documenter, NonlinearSolve, SimpleNonlinearSolve, Sundials, SciMLNLSolve, | ||
NonlinearSolveMINPACK, SteadyStateDiffEq, SciMLBase, DiffEqBase | ||
using Documenter, | ||
NonlinearSolve, SimpleNonlinearSolve, Sundials, SteadyStateDiffEq, SciMLBase, DiffEqBase | ||
|
||
cp("./docs/Manifest.toml", "./docs/src/assets/Manifest.toml", force = true) | ||
cp("./docs/Project.toml", "./docs/src/assets/Project.toml", force = true) | ||
cp(joinpath(@__DIR__, "Manifest.toml"), joinpath(@__DIR__, "src/assets/Manifest.toml"), | ||
force = true) | ||
cp(joinpath(@__DIR__, "Project.toml"), joinpath(@__DIR__, "src/assets/Project.toml"), | ||
force = true) | ||
|
||
include("pages.jl") | ||
|
||
makedocs(sitename = "NonlinearSolve.jl", | ||
makedocs(; sitename = "NonlinearSolve.jl", | ||
authors = "Chris Rackauckas", | ||
modules = [NonlinearSolve, SciMLBase, DiffEqBase, SimpleNonlinearSolve, Sundials, | ||
SciMLNLSolve, NonlinearSolveMINPACK, SteadyStateDiffEq], | ||
SteadyStateDiffEq], | ||
clean = true, doctest = false, linkcheck = true, | ||
linkcheck_ignore = ["https://twitter.com/ChrisRackauckas/status/1544743542094020615"], | ||
warnonly = [:missing_docs, :cross_references], | ||
format = Documenter.HTML(assets = ["assets/favicon.ico"], | ||
canonical = "https://docs.sciml.ai/NonlinearSolve/stable/"), | ||
pages = pages) | ||
pages) | ||
|
||
deploydocs(repo = "github.com/SciML/NonlinearSolve.jl.git"; | ||
push_preview = true) | ||
deploydocs(repo = "github.com/SciML/NonlinearSolve.jl.git"; push_preview = true) |
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# FastLevenbergMarquardt.jl | ||
|
||
This is a extension for importing solvers from FastLevenbergMarquardt.jl into the SciML | ||
interface. Note that these solvers do not come by default, and thus one needs to install | ||
the package before using these solvers: | ||
|
||
```julia | ||
using Pkg | ||
Pkg.add("FastLevenbergMarquardt") | ||
using FastLevenbergMarquardt, NonlinearSolve | ||
``` | ||
|
||
## Solver API | ||
|
||
```@docs | ||
FastLevenbergMarquardtJL | ||
``` |
This file contains 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# LeastSquaresOptim.jl | ||
|
||
This is a extension for importing solvers from LeastSquaresOptim.jl into the SciML | ||
interface. Note that these solvers do not come by default, and thus one needs to install | ||
the package before using these solvers: | ||
|
||
```julia | ||
using Pkg | ||
Pkg.add("LeastSquaresOptim") | ||
using LeastSquaresOptim, NonlinearSolve | ||
``` | ||
|
||
## Solver API | ||
|
||
```@docs | ||
LeastSquaresOptimJL | ||
``` |
This file contains 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 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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# NLsolve.jl | ||
|
||
This is a wrapper package for importing solvers from NLsolve.jl into the SciML interface. | ||
Note that these solvers do not come by default, and thus one needs to install | ||
the package before using these solvers: | ||
This is a extension for importing solvers from NLsolve.jl into the SciML interface. Note | ||
that these solvers do not come by default, and thus one needs to install the package before | ||
using these solvers: | ||
|
||
```julia | ||
using Pkg | ||
Pkg.add("SciMLNLSolve") | ||
using SciMLNLSolve | ||
Pkg.add("NLsolve") | ||
using NLSolve, NonlinearSolve | ||
``` | ||
|
||
## Solver API | ||
|
||
```@docs | ||
NLSolveJL | ||
NLsolveJL | ||
``` |
This file contains 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 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 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 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 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 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.
4e1638a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
4e1638a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/96732
Tip: Release Notes
Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.
To add them here just re-invoke and the PR will be updated.
Tagging
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: