1
- # Optimization.jl
1
+ # Optimization.jl: A Unified Optimization Package
2
2
3
3
Optimization.jl is a package with a scope that is beyond your normal global optimization
4
4
package. Optimization.jl seeks to bring together all of the optimization packages
@@ -14,13 +14,28 @@ Assuming that you already have Julia correctly installed, it suffices to import
14
14
Optimization.jl in the standard way:
15
15
16
16
``` julia
17
- import Pkg; Pkg. add (" Optimization" )
17
+ import Pkg
18
+ Pkg. add (" Optimization" )
18
19
```
19
20
The packages relevant to the core functionality of Optimization.jl will be imported
20
21
accordingly and, in most cases, you do not have to worry about the manual
21
22
installation of dependencies. However, you will need to add the specific optimizer
22
23
packages.
23
24
25
+ ## Contributing
26
+
27
+ - Please refer to the
28
+ [ SciML ColPrac: Contributor's Guide on Collaborative Practices for Community Packages] ( https://github.com/SciML/ColPrac/blob/master/README.md )
29
+ for guidance on PRs, issues, and other matters relating to contributing to SciML.
30
+ - See the [ SciML Style Guide] ( https://github.com/SciML/SciMLStyle ) for common coding practices and other style decisions.
31
+ - There are a few community forums:
32
+ - The #diffeq-bridged and #sciml-bridged channels in the
33
+ [ Julia Slack] ( https://julialang.org/slack/ )
34
+ - The #diffeq-bridged and #sciml-bridged channels in the
35
+ [ Julia Zulip] ( https://julialang.zulipchat.com/#narrow/stream/279055-sciml-bridged )
36
+ - On the [ Julia Discourse forums] ( https://discourse.julialang.org )
37
+ - See also [ SciML Community page] ( https://sciml.ai/community/ )
38
+
24
39
## Overview of the Optimizers
25
40
26
41
| Package | Local Gradient-Based | Local Hessian-Based | Local Derivative-Free | Local Constrained | Global Unconstrained | Global Constrained |
0 commit comments