Ask HN: Do you use an optimization solver? Which one? Do you like it?
31–40 of 158 posts
Re: Ask HN: Do you use an optimization solver? Which one? Do you like it?
#32Re: Ask HN: Do you use an optimization solver? Which one? Do you like it?
#33Re: Ask HN: Do you use an optimization solver? Which one? Do you like it?
#34The only optimisation solver I use is Excel Solver Add-In. It’s great, but you have to be able to put your problem into Excel to use it which does not work for all use cases. In cases where I’m trying to optimise something that doesn’t quite fit into Excel cleanly I’ll usually do some sort of hand-rolled Monte Carlo optimisation. This generally works for me in the types of problems I most often solve.
Re: Ask HN: Do you use an optimization solver? Which one? Do you like it?
#35I use JuMP to switch solvers to Mosek or an open source solver is something doesn't go as expected.
Re: Ask HN: Do you use an optimization solver? Which one? Do you like it?
#36Re: Ask HN: Do you use an optimization solver? Which one? Do you like it?
#37Re: Ask HN: Do you use an optimization solver? Which one? Do you like it?
#38Re: Ask HN: Do you use an optimization solver? Which one? Do you like it?
#39I started to write up a page to track the "business of solvers".
Should be "launching" in the next week or so.
Re: Ask HN: Do you use an optimization solver? Which one? Do you like it?
#40One thing I don't like about OrTools is that it seems there are better solvers available if you compile it from source, but I failed to get it built. As a result, I use the "CBC_MIXED_INTEGER_PROGRAMMING" solver because it's built into the precompiled libraries, not because it's necessarily the best one. It's unclear to me what benefit other solvers offer; the solver doesn't seem to be where my problems typically are.