Skip to content

Commit 6340c89

Browse files
committed
Small doc fixes
1 parent 98390e9 commit 6340c89

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

FOAS/migration/Readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
> ## Important Information
22
> You can view this page as a [webpage](https://numericalalgorithmsgroup.github.io/NAGJavaExamples/FOAS/migration) or access this as a regular github [repository](https://github.com/numericalalgorithmsgroup/NAGJavaExamples/tree/main/FOAS/migration).
33
>
4-
> The source of this example can be found [here](https://numericalalgorithmsgroup.github.io/NAGJavaExamples/FOAS/migration/Migration_E04DG_E04KF.java) and the output [here](https://github.com/numericalalgorithmsgroup/NAGJavaExamples/tree/main/FOAS/migration/output.txt).
4+
> The source of this example can be found [here](https://github.com/numericalalgorithmsgroup/NAGJavaExamples/tree/main/FOAS/migration/Migration_E04DG_E04KF.java) and the output [here](https://github.com/numericalalgorithmsgroup/NAGJavaExamples/tree/main/FOAS/migration/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
8-
# Migrating from `E04DG` to `E04KF`
8+
# Migrating from E04DG to E04KF
99

1010
This page illustrates the steps required to upgrade from the solver `uncon_conjgrd_comp` (`E04DG`) to `handle_solve_bounds_foas` (`E04KF`) introduced at Mark 27 of the NAG Library.
1111

@@ -71,7 +71,7 @@ public static class MONIT_E04KF extends E04KF.Abstract_E04KF_MONIT {
7171
double[] x = new double[] { -1.5, 1.9 };
7272
```
7373

74-
## Solve the problem with `E04DG`
74+
## Solve the problem with E04DG
7575

7676
```java
7777
E04WB e04wb = new E04WB();
@@ -105,7 +105,7 @@ e04dg.eval(n, objfun_e04dg, iter, objf, objgrd, x, iwork, work, iuser, ruser, lw
105105
Solution: 1.0000067567705557 1.0000135365609837
106106
```
107107

108-
## Now solve with the new solver `E04KF`
108+
## Now solve with the new solver E04KF
109109

110110
```java
111111
// Now solve with the new solver E04KF

0 commit comments

Comments
 (0)