I am using Bonmin through Pyomo/Python, on an Windows machine. Bonmin is being using via binaries, and HSL solvers as well. I could change the default solver successfully for Bonmin but IPOPT is still using MUMPS as a linear solver.
I've tried including a bonmin.opt file within the folders (Bonmin's executable or the .py file) but it is not interpreted by Pyomo.
For assigning the linear solver to Bonmin, I use the command line below:
solver.options['linear_solver'] = 'ma27'
For assigning the linear solver to IPOPT within Bonmin, I tried many different commands but could not find any that worked. Examples include:
solver.options['ipopt.linear_solver'] = 'ma27'
solver.options['ipopt_linear_solver'] = 'ma27'
As well as many other different syntax. I have searched throughout Bonmin's and IPOPT's manuals but I still get the same warning if the syntax is accepted:
NOTE: You are using Ipopt by default with the MUMPS linear solver. Other linear solvers might be more efficient (see Ipopt documentation).
Otherwise, the syntax isn't even accepted.
Do you have any suggestions?