Skip to content

Commit da8f695

Browse files
committed
Small doc fixes
1 parent 339d9e3 commit da8f695

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

FOAS/example/Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
> ## Important Information
22
> You can view this page as a [webpage](https://numericalalgorithmsgroup.github.io/NAGJavaExamples/FOAS/example) or access this as a regular github [repository](https://github.com/numericalalgorithmsgroup/NAGJavaExamples/tree/main/FOAS/example).
33
>
4-
> The source of this example can be found [here](https://numericalalgorithmsgroup.github.io/NAGJavaExamples/FOAS/example/Rosenbrock2d.java) and the output [here](https://github.com/numericalalgorithmsgroup/NAGJavaExamples/tree/main/FOAS/example/output.txt).
4+
> The source of this example can be found [here](https://github.com/numericalalgorithmsgroup/NAGJavaExamples/tree/main/FOAS/example/Rosenbrock2d.java) and the output [here](https://github.com/numericalalgorithmsgroup/NAGJavaExamples/tree/main/FOAS/example/output.txt).
55
>
66
> See the top directory of this repository for instructions to set up the [NAG Library for Java](https://github.com/numericalalgorithmsgroup/NAGJavaExamples).
77
@@ -107,7 +107,7 @@ steps[1].add(x[1]);
107107
steps[2].add(rinfo[0]);
108108
```
109109

110-
</br>
110+
<br/>
111111

112112
```
113113
----------------------------------------------------------
@@ -234,7 +234,7 @@ for (int i = 0; i < mult.length; i += 2) {
234234
}
235235
```
236236

237-
</br>
237+
<br/>
238238

239239
```
240240
Lagrange multipliers: [ -0.4 0.0 ]

FOAS/migration/Readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static class OBJFUN_E04DG extends E04DG.Abstract_E04DG_OBJFUN {
3030
}
3131
```
3232

33-
</br>
33+
<br/>
3434

3535
```java
3636
// Define user call-backs for E04KF
@@ -64,7 +64,7 @@ public static class MONIT_E04KF extends E04KF.Abstract_E04KF_MONIT {
6464
}
6565
```
6666

67-
</br>
67+
<br/>
6868

6969
```java
7070
// The initial guess
@@ -99,7 +99,7 @@ ifail = 0;
9999
e04dg.eval(n, objfun_e04dg, iter, objf, objgrd, x, iwork, work, iuser, ruser, lwsav, iwsav, rwsav, ifail);
100100
```
101101

102-
</br>
102+
<br/>
103103

104104
```
105105
Solution: 1.0000067567705557 1.0000135365609837
@@ -158,7 +158,7 @@ E04RZ e04rz = new E04RZ();
158158
e04rz.eval(handle, ifail);
159159
```
160160

161-
</br>
161+
<br/>
162162

163163
```
164164
E04KF, First order method for bound-constrained problems

0 commit comments

Comments
 (0)