This repository contains instances of optimization problems that have been used for benchmarking Kipu Quantum's optimization algorithms. The instances are in JSON format and are organized in folders according to the problem they represent.
The folder max-cut contains several instances of the (unweighted)
Max-Cut
problem on undirected graphs, each stored in a JSON file. Given an undirected
graph
The Max-Cut problem consists of finding a subset of nodes
One can recover from a solution
The instances are stored in JSON files, with the number of variables
indicated in the file name. Each instance is represented by a dictionary,
where an item (i,j): J_ij corresponds to a nonzero interaction between spins
i and j with two-body coefficient J_ij. We also include a key (,) with
a constant term c that is added to the Hamiltonian to match the objective
function of the Max-Cut problem.
The table below shows the ground state energy of the problem instances in the
max-cut folder. The ground state energy is the minimum value of the
Hamiltonian
| File Name | Ground state Energy |
|---|---|
maxcut_regular_3_100_nodes_weighted.json |
-68.8282 |
maxcut_regular_3_140_nodes_weighted.json |
-105.9703 |
maxcut_regular_3_150_nodes_weighted.json |
-110.9509 |
maxcut_regular_4_130_nodes_weighted.json |
-112.7489 |
The folder hubo contains two
instances of HUBO problems. The problems have 156 variables with a
connectivity that matches the IBM Marrakesh device. The coefficients were
generated randomly from
The problems consist of finding the
ground state of an
Ising model with a Hamiltonian with terms of order up to 3. More precisely,
for spin variables
The instances are stored in JSON files. Each instance is represented by a
dictionary where the items (i,): c_i correspond to the linear terms,
the items (i,j): J_ij are the coefficients of the quadratic terms, and the
items
(i,j,k): K_ijk are the coefficients of the cubic terms of the Hamiltonian.
The table below shows the ground state energy of the problem instances in the
HUBO folder.
| File Name | Ground state Energy |
|---|---|
hubo1_marrakesh.json |
-234 |
hubo2_marrakesh.json |
-234 |