Skip to content

Commit e147fe4

Browse files
authored
Fix capitalisation (#124)
1 parent 1e5d175 commit e147fe4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ x = zeros(2)
6161
nd = NonDifferentiable(f, x)
6262
od = OnceDifferentiable(f, g!, x)
6363
odfg = OnceDifferentiable(f, g!, fg!, x)
64-
td1 = Twicedifferentiable(f, g!, h!, x)
65-
tdfg = Twicedifferentiable(f, g!, fg!, h!, x)
64+
td1 = TwiceDifferentiable(f, g!, h!, x)
65+
tdfg = TwiceDifferentiable(f, g!, fg!, h!, x)
6666
```
6767
#### Multivalued objective
6868
If we consider the gradient of the Himmelblau function above, we can try to solve ![FOCs](https://user-images.githubusercontent.com/8431156/34005673-f7bc5b52-e0fb-11e7-8bd9-86efad17cb95.gif) without caring about the objective value. Then we can still create `NDifferentiable`s, but we need to specify the cache to hold the value of ![Multivalued objective](https://user-images.githubusercontent.com/8431156/34006586-2de39a3a-e0ff-11e7-8453-48aad94c6b5e.gif). Currently, the only relevant ones are `NonDifferentiable` and `OnceDifferentiable`. `TwiceDifferentiable` could be used for higher order (tensor) methods, though they are rarely worth the cost. The relevant functions coded in Julia are:

0 commit comments

Comments
 (0)