0

Here is the issue:

I found a bug of Scipy SLSQP algorithm in developing my project. I post the issue to Scipy community to discuss with the developers and they gave me some ideas. Here is the discussion: https://github.com/scipy/scipy/issues/7618. Now what they supposed is to change some of the basic Fortran code of SLSQP algorithm and test it with some larger-scale problem instead of some toy examples. I can test it with my project, but the problem is I can't find the Fortran code of SLSQP on my computer. Can anyone tell me how can I change the code and test it like what the developer's has done?

Chuan Xu
  • 37
  • 5

1 Answers1

0
  1. Get the most recent code with the fix:

    git clone https://github.com/scipy/scipy.git

  2. Apply the patch from the issue to the code. Check this link on how to do it.

  3. Build updated package. Instructions are here.

  4. Link it to your project and run tests!

CaptainTrunky
  • 1,562
  • 2
  • 15
  • 23