Yes, I am actually experimenting with all of these solvers in combination with the OptiToolbox. My optimisation problem is a non-convex load balancing problem that uses non-linear constraints to integrate an analytic approximation for a closed queueing network model.
The issue is, that I have no access to the full BARON license.
So far, I noticed that the combination of bmibnb with ipopt and glpk works out best for my test problem with 4 servers and 22 query classes, which YALMIP transforms into a model with the following constraints:
| #1| Numeric value| Element-wise inequality 8x1|
| #2| Numeric value| Element-wise inequality (bilinear) 8x1|
| #3| Numeric value| Element-wise inequality 176x1|
| #4| Numeric value| Element-wise inequality 88x1|
| #5| Numeric value| Element-wise inequality (polynomial) 88x1|
* Branch-variables : 352
bmibnb reaches a relative gap of 5% after approx. 10 hours, whereas SCIP converges really slowly and generally starts with a very low bound. However, I didn't get to use any specific SCIP options yet, such as the bound tightening used by bmibnb by default.