-
-
Notifications
You must be signed in to change notification settings - Fork 48
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
Add contributing manual #570
base: master
Are you sure you want to change the base?
Conversation
|
||
## Dependency Structure | ||
|
||
There is a tree dependency structure to the sublibraries of NonlinearSolve.jl. The core subpackage NonlinearSolveBase.jl is the hard dependency of all the other subpackages. SimpleNonlinearSolve.jl is a special one with BracketingNonlinearSolve.jl as dependency. NonlinearSolve.jl as the parent package contains all of the subpackages. |
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.
SimpleNonlinearSolve.jl is a special one with BracketingNonlinearSolve.jl as dependency.
That should change.
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.
Do you mean that we should no longer use and reexport BracketingNonlinearSolve in SimpleNonlinearSolve?
we should just use sources instead of having to manually dev https://github.com/LuxDL/Lux.jl/blob/f6cecd2ba03fd9f8d784b3fa9b5c8e667fe7314f/Project.toml#L56-L60 |
the total number of dependencies per solver. As a consequence, it requires a bit of special | ||
handling compared to some other Julia packages. | ||
|
||
When running the subpackage test suite, it's recommended that one has dev'd its relevant packages in NonlinearSolve.jl. This can be done via(use `NonlinearSolveFirstOrder` as example): |
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.
Some minor typos. Should probably be:
via (with `NonlinearSolveFirstOrder` as an example)
Add some context for developing NonlinearSolve