Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Corrected the p=p mistake in the example.
  • Loading branch information
mkg33 committed Oct 15, 2020
1 parent 562b555 commit 10efe20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
GalacticOptim.jl is a package with a scope that is beyond your normal global optimization
package. GalacticOptim.jl seeks to bring together all of the optimization packages
it can find, local and global, into one unified Julia interface. This means, you
learn one package and you learn them all! GalacticOptim.jl adds a few high level
learn one package and you learn them all! GalacticOptim.jl adds a few high-level
features, such as integrating with automatic differentiation, to make its usage
fairly simple for most cases, while allowing all of the options in a single
unified interface.

#### Note: This package is still in development. The README is currently both an active documentation and development roadmap.
#### Note: This package is still in development. The README is currently both an active documentation and a development roadmap.

## Examples

Expand All @@ -36,7 +36,7 @@ unified interface.
```

```julia
prob = OptimizationProblem(f, x0, p = p, lb = [-1.0,-1.0], ub = [1.0,1.0])
prob = OptimizationProblem(f, x0, p, lb = [-1.0,-1.0], ub = [1.0,1.0])
sol = solve(prob, Fminbox(GradientDescent()))
```

Expand Down

0 comments on commit 10efe20

Please sign in to comment.