Category: A2; Team name: Snopoff; Dataset: MIPLIB #253
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Checklist
Description
This PR introduces the
MIPLIBDataset, a dataset class for loading Mixed Integer Programming (MIP) instances from the MIPLIB 2017 benchmark.What is a MIP?
A mixed-integer linear program (MIP) is an optimization problem of the form
where some components of (x) are required to be integer-valued. MIPs are a standard modelling tool for combinatorial optimization and operations research and are solved in practice by branch-and-bound, cutting planes, and related techniques.
What is MIPLIB?
MIPLIB is the standard public library of real-world and synthetic MIP instances used to benchmark mixed-integer solvers. The current version, MIPLIB 2017, contains 1,065 instances, with a 240-instance official benchmark subset used to compare solver performance. In this PR, the benchmark subset is used.
Motivation:$\leftrightarrow$ Constraints). This structure was exploited in several works applying GNNs to the combinatorial optimization problems. However, this bipartite representation naturally extends to a hypergraph formulation, where each constraint is treated as a hyperedge connecting all variables appearing in it.
Combinatorial optimization problems, specifically MIPs, possess a natural bipartite structure (Variables
References & Prior Art
This implementation is inspired by works that apply GNNs to MIPs, generalizing the bipartite representation to hypergraphs: