From fdf2ddce97c164a8baadcaa2854ef8293c2776b9 Mon Sep 17 00:00:00 2001 From: Max Schweikart Date: Tue, 2 Jan 2024 14:47:01 +0100 Subject: [PATCH] fix: add missing space in QUBO description --- src/pages/solve/QUBO.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/solve/QUBO.tsx b/src/pages/solve/QUBO.tsx index 75f8a3a..29fb2a2 100644 --- a/src/pages/solve/QUBO.tsx +++ b/src/pages/solve/QUBO.tsx @@ -21,7 +21,7 @@ const QUBO: NextPage = () => { QUBO Solver In the Quadratic Unconstrained Binary Optimization problem, we try to - find the assignment for a finite amount of 0/1 + find the assignment for a finite amount of 0/1{' '} decision variables that minimizes a given quadratic term with these variables. The problem statement is given in the LP format and all solvers will present a variable assigment as a solution.