Papers for

operations research analysts

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Improved method breaks one third barrier in label assignment optimization

Breaking the 1/3 Barrier for $\boldsymbol{k}$-Submodular Maximization under Matroid and Knapsack Constraints: A Proportional Top-2 Randomized Framework

Abstract: $k$-submodularity generalizes submodularity by allowing each selected element to be assigned one of $k$ labels, rather than being merely selected or not selected. We study the problem of maximizing a nonnegative non-monotone $k$-submodular function, where $k\ge 2$, under classical support constraints, including a single matroid constraint and a single knapsack constraint. Previously, the best known approximation guarantees for non-monotone constrained $k$-submodular maximization had long remained at $1/3$ or $1/3-\varepsilon$, even in basic settings such as cardinality, matroid, and knapsack constraints. We show that this $1/3$ barrier is not inherent: for both the matroid and knapsack settings considered here, we give randomized polynomial-time algorithms achieving an approximation ratio of $\sqrt{2}-1\approx 0.4142$. The algorithms use a simple randomized greedy rule: once an element is selected, its label is chosen only from the two labels with the largest marginal gains, with probabilities proportional to the positive parts of these two gains. The value-oracle query complexity is $O(n^2k)$ in the matroid setting and $O(n^3k^2)$ in the knapsack setting. These results give the first approximation guarantees exceeding $1/3$ for non-monotone $k$-submodular maximization under matroid and knapsack constraints.

Mon 14 SeptData Structures and Algorithms
The gist
The paper studies a problem where items must be selected and assigned one of several labels to maximize a certain value, under some rules like budget or independence. Earlier methods could only guarantee a solution that was about one third as good as the best possible. The authors show a new way to pick items and assign labels that improves this guarantee to about 41%, meaning better solutions can be found more reliably. Their approach randomly chooses from the two best label options for each item, balancing simplicity and power.
Open 2609.15677v1

Graph neural networks enhanced with heuristics improve spin model optimization

Graph neural networks and the energetic cavity method for combinatorial optimization

Abstract: We study the use of graph neural networks (GNNs) for finding approximate ground states of Ising models. Efficiently finding these ground states is of broad significance because many combinatorial optimization problems can be formulated as an Ising model with the appropriate choice of couplings and fields. Exactly solving these problems is hard but there are many good heuristic methods. A lineage of these heuristics build from mean-field approximations: one approach uses the leading eigenvector of an appropriately defined matrix, another is the min-sum algorithm, also known as the energetic cavity method. Without modification, GNNs perform worse than both of these methods. We consider small modifications to the GNN to incorporate these heuristics and find that this considerably improves performance. While the modified approach is competitive against other deep-learning approaches, we still find that simulated annealing is reliably at least as good as deep learning methods for the same computational cost.

Mon 7 SeptMachine Learning
The gist
Finding the best arrangement of spins in certain physics problems helps solve many puzzles in computing called combinatorial optimization. The authors studied how graph neural networks (GNNs), a kind of AI, can approximate these best spin arrangements but found GNNs alone didn't do as well as classic heuristic methods. By adding ideas from these heuristics into the GNN design, performance improved a lot. Still, a traditional method called simulated annealing was just as good or better for similar computing effort.
Open 2609.07456v1