Skip to content

Commit

Permalink
release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erikerlandson committed Jun 12, 2018
1 parent a4f6b8d commit 37518c5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ Implementation of the Barrier Method from §11.3 of _Convex Optimization_, Boyd
### Documentation
Full API javadoc is available at: https://erikerlandson.github.io/gibbous/java/api/

Some examples are included below.

### How to include `gibbous` in your project
`gibbous` is a java project, and so can be used either with java or scala.
It is built against apache commons math-3, which you must include
in your project dependencies, as shown below.

```scala
resolvers += "manyangled" at "https://dl.bintray.com/manyangled/maven/"

libraryDependencies ++= Seq(
"com.manyangled" % "gibbous" % "0.1.0",
"org.apache.commons" % "commons-math3" % "3.6.1")
```

### Examples

##### Minimize a convex function under constraints
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "gibbous"

organization := "com.manyangled"

version := "0.1.0-pilot"
version := "0.1.0"

crossPaths := false // drop off Scala suffix from artifact names.

Expand Down

0 comments on commit 37518c5

Please # to comment.