Quantcast
Channel: Math.NET Numerics - Math.NET
Viewing all articles
Browse latest Browse all 224

Combinatorial optimization in `MathNet.Numerics.Optimization`

$
0
0

@fuglede wrote:

I tend to generally view MathNet.Numerics.Optimization as a .NET parallel to Python’s scipy.optimize, and in particular, both have a strong set of implementations for general non-discrete optimization. These days, there’s some amount of work going on in SciPy to include various algorithms for solving combinatorial optimization problems, and I’m wondering if there would be appetite for something similar in Math.NET Numerics?

This would put the relevant part of Numerics at competition with more specialized libraries such as e.g. QuickGraph or Google’s OR-Tools, so a natural question would be where to draw the line, and what the scope should be. Just to have an (obviously non-exhaustive) list of possible examples (some of which have polynomial-time solutions, some of which probably don’t), would there be appetite for algorithms solving things like

  1. covering/packing problems (e.g. min set/vertex/edge cover, maximum matching, …),
  2. maximum flow,
  3. shortest path,
  4. travelling salesman,
  5. linear programming,
  6. circuit minimization?

And just to give an example using code of my own to phrase this as a yes/no question: SciPy has scipy.optimize.linear_sum_assignment; do we want that here?

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 224

Trending Articles