nlopt icon indicating copy to clipboard operation
nlopt copied to clipboard

library for nonlinear optimization, wrapping many algorithms for global and local, constrained or unconstrained, optimization

Results 156 nlopt issues
Sort by recently updated
recently updated
newest added

Hi, I am trying to install the package on windows 64 bit for python 3.7 but having troubles. Initially I tried installing from the wheel that is provided on the...

Hi, I'm trying to use NLOpt to minimize a function of the kind > T = sum_k sum_n [ R_kn - sum_i w_i R_kni ]^2 with respect to parameters wi,...

Hi, I don't know if I am in the correct place to ask this question, but i have some issues to build nlopt 2.6.1 on windows 10, to collect the...

Currently I'm working on optimizing a very sensitive problem, and especially for global optimization algorithms, there are some inputs that the objective function isn't able to evaluate. All of the...

I am trying to setup the latest NLOpt binaries on Windows 10 (64-bit) in MSVC 2017. I downloaded the binaries that are available at https://nlopt.readthedocs.io/en/latest/NLopt_on_Windows/ The instructions are kind of...

I‘m trying to install NLopt with Intel fortran on windows but failed... I wonder are there any guidance? Now I tried it as follows: 1. download “NLopt.v2.6.1.x86_64-w64-mingw32.tar.gz (64-bit)” on the...

I am having trouble getting to work the nlopt global algorithm ags. I have ran other functions but this does not work with error: nlopt invalid argument. ``` import nlopt...

I am trying to find the global minimization of the eggholder function: ``` import nlopt import numpy as np def eggholder(x, grad): return (-(x[1] + 47) * np.sin(np.sqrt(abs(x[0]/2 + (x[1]...

Has anyone tried compiling nlopt for stm32 ? Any suggestions on how to do this ? nlopt seems to have a lot of dependency on standard c libraries which might...

I believe there's a bug in optimize.c, in the big switch statement that farms out the optimisation to the selected algorithm. The algorithm -> which_alg -> {which_diam, which_div, which_opt} mapping...