You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyprima/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
## About
2
2
3
-
This is a Python translation of the[modern-Fortran reference implementation](https://github.com/libprima/prima/tree/main/fortran)
3
+
This is a Python translation of [Zaikun Zhang](https://www.zhangzk.net)'s[modern-Fortran reference implementation](https://github.com/libprima/prima/tree/main/fortran)
4
4
for Powell's derivative-free optimization solvers, which is available at `fortran/` under the root directory.
5
5
It is supposed to be a faithful translation, [producing bit-for-bit identical results](https://github.com/scipy/scipy/pull/22350#issue-2795978526).
6
-
as the Fortran reference implementation
6
+
as the modern-Fortran reference implementation.
7
7
If you notice a difference, [raise an issue](https://github.com/libprima/prima/issues/new).
8
8
9
9
Due to [bug-fixes](https://github.com/libprima/prima#bug-fixes) and [improvements](https://github.com/libprima/prima#improvements),
@@ -13,7 +13,7 @@ even though the algorithms are essentially the same. Therefore, it is important
13
13
PRIMA rather than the original solvers if you want your results to be reproducible.
14
14
15
15
Compared to Powell's Fortran 77 implementation, the modern-Fortran implementation and hence any faithful
16
-
translation like this one generally [produce better solutions with less function evaluations](https://github.com/libprima/prima#improvements),
16
+
translation like this one generally [produce better solutions with fewer function evaluations](https://github.com/libprima/prima#improvements),
17
17
making them preferable for [applications with expensive function evaluations](https://github.com/orgs/libprima/discussions/145).
18
18
However, if function evaluations are not the dominant cost in your application, the Fortran 77
19
19
solvers are likely to be faster, as they are more efficient in terms of memory usage and flops
@@ -32,7 +32,7 @@ To develop, `cd` into the `src` directory and run
32
32
33
33
```pip install --editable .```
34
34
35
-
This will install prima locally in an editable fashion. From there you can run the examples/cobyla/cobyla_example.py (from any directory) and go from there.
35
+
This will install PRIMA locally in an editable fashion. From there you can run the examples/cobyla/cobyla_example.py (from any directory) and go from there.
0 commit comments