Zaikun ZHANG

Results 147 comments of Zaikun ZHANG

BTW, "--disable-indent-subroutine" would disable the indentation for subroutine and function. Thank you.

Hi, there is no such option in the current version, but we will add it in future versions. BTW, are you using PDFO under Python or MATLAB? Thanks.

To be clear, when `i = n = 1`, the Fortran standard says that `A(i, i + 1:n)` and `x(i + 1:n)` are valid and they should be empty arrays....

This bug is the same as the following one in `nvfortran` 22.3, which has been fixed now by 23.5. https://forums.developer.nvidia.com/t/bug-in-nvfortran-22-3-false-positive-of-out-bound-subscripts/209936 **N.B.**: It is **DIFFERENT** from the following one, which was...

Dear Éric, Thank you for your encouraging words. I fully agree that the Fortran 77 code is quite challenging to deal with. It took me three years, day to day,...

I guess you meant `npt`, whch is the **n**umber of **p**oin**t**s in the interpolation set. It is still an input of the Fortran implementation (see, e.g., [NEWUOA](https://github.com/libprima/prima/blob/main/fortran/newuoa/newuoa.f90)). Of course, as...

> I can imagine how painful it can be 3 years of re-coding. But the result seems very useful for others. It was indeed painful --- if not depressive. It...

Fantastic! > I had to implement a per-thread stack of pointers to the user-defined objective functions (hence written in Julia) to allow for calling the optimizers in different threads and...

Not in the Fortran implementation. It is better done in the interfaces, provided the "upper-level" language is more expressive, which is the case for Python, MATLAB, Julia, R ... It...