27 Feb

SolverStudio_00_06_13_00 20150227 released with CMPL support

We have now released a second experimental release (SolverStudio_00_06_13_00 20150227) with support for the COIN-OR CMPL language.  This version lets you use the CMPL Server to solve models on remote machines (all without leaving Excel). Many thanks to Mike Steglich for his hard work in adding SolverStudio support for CMPL. This also fixes problems with CPython in the SolverStudio_00_06_12_00 20150216 release, adds Python examples (to help you better understand how data items get mapped into Python variables), and improves error reporting in CMPL. And, error messages can now be double-clicked to go to the error line in your model.

21 Jan

SolverStudio+GAMS speedup: 2 hours to 2 minutes

This user feedback helps summarise why we created SolverStudio.

Dear Andrew,
Couple of months ago you had advised me to solve [my OpenSolver] model (which takes 1.5 hours to even create set up file) in SolverStudio.

I followed your advise and now I would like to share my real life experience about such a big model.
While OpenSolver was solving my large problem in 2-2.5 hours (including setup and solution), SolverStudio GAMS formulation reduced the solution time to 2 minutes. I’d like to take this opportunity to thank everyone who developed such a tool. Also, SolverStudio greatly quickened up NEOS solver use. It was kind of painful to NEOS solver on its own…

06 Nov

COIN-OR Pioneers win INFORMS Impact Prize

I’m very pleased to see that the pioneers who played such a pivotal role in creating COIN-OR and all the great software that makes OpenSolver & SolverStudio possible have been awarded the INFORMS 2014 Impact Prize. Well done to Brenda Dietrich, JP Fasano, John Forrest, Lou Hafer, Brady Hunsaker, Laszlo Ladanyi, Robin Lougee, Ted Ralphs, and Matthew Saltzman for all their hard work over the years. They will receive their award at the INFORMS conference Award Ceremony this Sunday.

29 Aug

SolverStudio 0.6.03 (20140829) released

SolverStudio 0.6.03 (20140829) has now been released, and is the recommended download. This fixes the issues reported by users in the experimental SolverStudio 0.6.0 (2014.04.07) and includes minor improvements including better searching for GAMS/AMPL/Gurobi installations, a new version of GLPK/GMPL, a fix that caused problems for non-English users, and a change that removes a Python error being reported. All feedback welcome. Andrew

28 Aug

SolverStudio allocates 570 Engineers

Two of my students, Michael and Oscar, have developed a SolverStudio model for allocating students into student groups. This model is now being used successfully by one of our large professional development courses to manage a classs of 570+ students. The model forms student groups that are balanced in factors such as engineering discipline, gender, and grade point average. This tool also creates nice PDF outputs, thanks to Python’s powerful libraries. You can find their model on Github.

This is a great example of how a model can be quickly developed and implemented without requiring the end user to learn new skills beyond their existing Excel expertise.

Well done, Oscar and Michael, for taking the initiative to develop, test and implement this.

Andrew

30 Jun

Clearing Shrinking Ranges

We have just been working on an implementation in which our data items are defined by named ranges that use formulae, so they expand as the data set expands. When they shrink, they leave old data behind on the sheet. To clear this old data, you can use code such as:

xlDown = -4121
# print ActiveSheet.Range(ActiveSheet.Range(“test”),ActiveSheet.Range(“test”).End(xlDown)).Address()
ActiveSheet.Range(ActiveSheet.Range(“test”),ActiveSheet.Range(“test”).End(xlDown)).Clear()

11 Jun

SolverStudio Speedup: 2 hours to 20 seconds

One of our OpenSolver users recently worked with modelling guru Stu Mitchell to move his model from OpenSolver to SolverStudio. The OpenSolver model originally took 4 hours to solve. After simplifying the spreadsheet, this reduced to 2 hours. But, Stu then created a SolverStudio version that solved the same problem in just 20 seconds. To quote our user: The conversion to SolverStudio has been an excellent improvement.

If you have a complicated spreadsheet, then you may also find that SolverStudio  gives much better solve times than a traditional OpenSolver model. Furthermore, the latest SolverStudio release includes ready-to-run models for many common problem formulations, which helps make using SolverStudio even easier. Give it a go, and let us know how you get on.

Andrew

16 Apr

Bug reporting for CBC, NEOS, Pyomo

It was an interesting experience testing the latest SolverStudio 0.6.0 release. We discovered several independent bugs in CBC 2.8.8 on Windows which means (1) CBC often finds incorrect solutions when used with AMPL, and (2) it reports the wrong objective function value for these; thanks for Victor Zverovich from AMPL and John Forrest from COIN-OR for working with us to fix these ready for the next CBC release. We also found a bug in Pyomo’s output formatting that John Sirola is working on; we suggest for now you do not put comma’s in the values of indices. Finally, we think the output from NEOS has changed the way it is formatted; we have put in a work around while Ziliang Guo from NEOS looks into this. Who would have thought it would be such a busy week! Andrew