Slice and Concat Functions
QUBO++ provides slice and concat functions for manipulating vectors of variables and expressions. This page demonstrates these functions through a practical example: domain wall encoding.
Domain Wall Encoding
A domain wall is a binary pattern of the form $1\cdots 1\, 0\cdots 0$, where all 1s appear before all 0s. For $n$ binary variables, there are exactly $n+1$ domain wall patterns (including the all-1 and all-0 patterns), so a domain wall can represent an integer in the range $[0, n]$.
Using concat, head, tail, and sqr, we can construct a QUBO expression whose minimum-energy solutions are exactly the domain wall patterns.
QUBO++ program
#include <qbpp/qbpp.hpp>
#include <qbpp/exhaustive_solver.hpp>
int main() {
const size_t n = 8;
auto x = qbpp::var("x", n);
// y = (1, x[0], x[1], ..., x[n-1], 0)
auto y = qbpp::concat(1, qbpp::concat(x, 0));
// Adjacent difference
auto diff = qbpp::head(y, n + 1) - qbpp::tail(y, n + 1);
// Penalty: minimum value 1 iff domain wall
auto f = qbpp::sum(qbpp::sqr(diff));
f.simplify_as_binary();
std::cout << "f = " << f << std::endl;
auto solver = qbpp::exhaustive_solver::ExhaustiveSolver(f);
auto sol = solver.search({{"best_energy_sols", 1}});
std::cout << "energy = " << sol.energy() << std::endl;
std::cout << "solutions = " << sol.all_solutions().size() << std::endl;
for (const auto& s : sol.all_solutions()) {
for (size_t i = 0; i < n; ++i) std::cout << s(x[i]);
std::cout << " (sum = " << s(qbpp::sum(x)) << ")" << std::endl;
}
}
How it works
Step 1: Guard bits with concat
concat(1, concat(x, 0)) constructs the extended vector:
The guard bit 1 at the beginning and 0 at the end ensure that the domain wall pattern is bounded.
Step 2: Adjacent difference with head and tail
head(y, n+1) - tail(y, n+1) computes the element-wise difference between consecutive elements:
Step 3: Penalty with sqr and sum
sum(sqr(diff)) computes $\sum_{i=0}^{n} (y_i - y_{i+1})^2$. Since each $y_i \in {0, 1}$, each squared difference is either 0 or 1. The sum counts the number of transitions (changes from 0 to 1 or 1 to 0) in $y$.
A domain wall pattern has exactly one transition (from 1 to 0), so the minimum energy is 1, and all $n+1$ domain wall patterns achieve this minimum.
Output
f = 1 +2*x[1] +2*x[2] +2*x[3] +2*x[4] +2*x[5] +2*x[6] +2*x[7] -2*x[0]*x[1] -2*x[1]*x[2] -2*x[2]*x[3] -2*x[3]*x[4] -2*x[4]*x[5] -2*x[5]*x[6] -2*x[6]*x[7]
energy = 1
solutions = 9
00000000 (sum = 0)
10000000 (sum = 1)
11000000 (sum = 2)
11100000 (sum = 3)
11110000 (sum = 4)
11111000 (sum = 5)
11111100 (sum = 6)
11111110 (sum = 7)
11111111 (sum = 8)
All 9 optimal solutions are domain wall patterns, representing integers 0 through 8.
Dual-Matrix Domain Wall
The Dual-Matrix Domain Wall method constructs an $n \times n$ permutation matrix using two separate binary matrices with different shapes: x of size $(n{-}1) \times n$ with column-wise domain walls, and y of size $n \times (n{-}1)$ with row-wise domain walls. By adding guard bits and taking adjacent differences, each produces an $n \times n$ one-hot matrix. Requiring these two one-hot matrices to match ensures that each row and each column contains exactly one 1, forming a permutation matrix. For details, see: https://arxiv.org/abs/2308.01024
#include <qbpp/qbpp.hpp>
#include <qbpp/easy_solver.hpp>
int main() {
const size_t n = 6;
auto x = qbpp::var("x", n - 1, n); // (n-1) x n
auto y = qbpp::var("y", n, n - 1); // n x (n-1)
// x: guard rows along dim=0 -> (n+1) x n, diff -> n x n (column one-hot)
auto xg = qbpp::concat(1, qbpp::concat(x, 0, 0), 0);
auto x_oh = qbpp::head(xg, n, 0) - qbpp::tail(xg, n, 0);
auto x_dw = qbpp::sum(qbpp::sqr(x_oh));
// y: guard cols along dim=1 -> n x (n+1), diff -> n x n (row one-hot)
auto yg = qbpp::concat(1, qbpp::concat(y, 0, 1), 1);
auto y_oh = qbpp::head(yg, n, 1) - qbpp::tail(yg, n, 1);
auto y_dw = qbpp::sum(qbpp::sqr(y_oh));
// Match: x_oh == y_oh (both n x n, no transpose needed)
auto match = qbpp::sum(x_oh - y_oh == 0);
auto f = x_dw + y_dw + match;
f.simplify_as_binary();
auto solver = qbpp::easy_solver::EasySolver(f);
auto sol = solver.search({{"target_energy", std::to_string(static_cast<int64_t>(2 * n))}});
std::cout << "energy = " << sol.energy() << std::endl;
std::cout << "x (" << n-1 << "x" << n << ") x_oh (" << n << "x" << n << ")" << std::endl;
for (size_t i = 0; i < n; ++i) {
if (i < n - 1) {
for (size_t j = 0; j < n; ++j) std::cout << sol(x[i][j]);
} else {
for (size_t j = 0; j < n; ++j) std::cout << " ";
}
std::cout << " -> ";
for (size_t j = 0; j < n; ++j) std::cout << sol(x_oh[i][j]);
std::cout << std::endl;
}
std::cout << "y (" << n << "x" << n-1 << ") y_oh (" << n << "x" << n << ")" << std::endl;
for (size_t i = 0; i < n; ++i) {
for (size_t j = 0; j < n - 1; ++j) std::cout << sol(y[i][j]);
std::cout << " -> ";
for (size_t j = 0; j < n; ++j) std::cout << sol(y_oh[i][j]);
std::cout << std::endl;
}
}
How it works
-
xis $(n{-}1) \times n$. Adding guard rows viaconcat(1, concat(x, 0, 0), 0)alongdim=0gives $(n{+}1) \times n$, where each column is a domain wall ($1\cdots 1\, 0\cdots 0$). Takinghead - tailalongdim=0produces an $n \times n$ matrixx_ohwhere each column is one-hot. -
yis $n \times (n{-}1)$. Adding guard columns viaconcat(1, concat(y, 0, 1), 1)alongdim=1gives $n \times (n{+}1)$, where each row is a domain wall. Takinghead - tailalongdim=1produces an $n \times n$ matrixy_ohwhere each row is one-hot. -
x_oh == y_oh: Both are $n \times n$, so they can be directly compared without transposition. When matched, the resulting matrix has exactly one 1 in each row and each column — a permutation matrix.
Output
energy = 12
x (5x6) x_oh (6x6)
111101 -> 000010
111100 -> 000001
110100 -> 001000
010100 -> 100000
010000 -> 000100
-> 010000
y (6x5) y_oh (6x6)
11110 -> 000010
11111 -> 000001
11000 -> 001000
00000 -> 100000
11100 -> 000100
10000 -> 010000
The optimal energy is $2n = 12$. x_oh and y_oh are identical, forming a valid $6 \times 6$ permutation matrix.
Axis-fixing Slice (slice, row, col)
To extract a sub-array by fixing specific axes of a multi-dimensional array, use slice, row, and col.
row, col, and axis-fixing slice are global functions only and return a new sub-array without modifying the original.
row(i) and col(j)
row(i) fixes axis 0 at index i; col(j) fixes axis 1 at index j:
auto x = qbpp::var("x", 3, 4); // 3×4
auto row0 = qbpp::row(x, 0); // {x[0][0], x[0][1], x[0][2], x[0][3]}
auto col2 = qbpp::col(x, 2); // {x[0][2], x[1][2], x[2][2]}
// row() and col() are global functions only (no member function version)
Example: element-wise product of two rows:
auto prod = qbpp::row(x, 0) * qbpp::row(x, 1); // Array<1, Term> with 4 elements
auto s = qbpp::sum(prod); // Expr
slice
slice can fix multiple axes simultaneously:
auto z = qbpp::var("z", 2, 3, 4); // 2×3×4
auto s1 = qbpp::slice(z, {{0, 1}}); // fix axis 0 to 1 → 3×4
auto s2 = qbpp::slice(z, {{0, 1}, {2, 3}}); // fix axis 0=1, axis 2=3 → 3 elements
// Axis-fixing slice() is a global function only (no member function version)
Out-of-range indices or duplicate axes result in a runtime error.
NOTE
operator[]is for accessing scalar elements by specifying all dimensions. It cannot be used to extract sub-arrays at intermediate dimensions. Useqbpp::row(),qbpp::col(), orqbpp::slice()to obtain sub-arrays.
スライス関数と連結関数
QUBO++ は、変数や式のベクトルを操作するためのスライス関数と連結関数を提供しています。 このページでは、実用的な例であるドメインウォール符号化を通じてこれらの関数を紹介します。
ドメインウォール符号化
ドメインウォールとは、$1\cdots 1\, 0\cdots 0$ の形をしたバイナリパターンで、 すべての1がすべての0の前に現れます。 $n$ 個のバイナリ変数に対して、ドメインウォールパターンは正確に $n+1$ 個あり (全1パターンと全0パターンを含む)、 $[0, n]$ の範囲の整数を表現できます。
concat、head、tail、sqr を使って、 最小エネルギー解がちょうどドメインウォールパターンとなるQUBO式を構築できます。
QUBO++ プログラム
#include <qbpp/qbpp.hpp>
#include <qbpp/exhaustive_solver.hpp>
int main() {
const size_t n = 8;
auto x = qbpp::var("x", n);
// y = (1, x[0], x[1], ..., x[n-1], 0)
auto y = qbpp::concat(1, qbpp::concat(x, 0));
// 隣接差分
auto diff = qbpp::head(y, n + 1) - qbpp::tail(y, n + 1);
// ペナルティ: ドメインウォールのとき最小値 1
auto f = qbpp::sum(qbpp::sqr(diff));
f.simplify_as_binary();
std::cout << "f = " << f << std::endl;
auto solver = qbpp::exhaustive_solver::ExhaustiveSolver(f);
auto sol = solver.search({{"best_energy_sols", 1}});
std::cout << "energy = " << sol.energy() << std::endl;
std::cout << "solutions = " << sol.all_solutions().size() << std::endl;
for (const auto& s : sol.all_solutions()) {
for (size_t i = 0; i < n; ++i) std::cout << s(x[i]);
std::cout << " (sum = " << s(qbpp::sum(x)) << ")" << std::endl;
}
}
仕組み
ステップ 1: concat によるガードビット
concat(1, concat(x, 0)) で拡張ベクトルを構築します:
先頭のガードビット 1 と末尾の 0 により、ドメインウォールパターンが境界で正しく制約されます。
ステップ 2: head と tail による隣接差分
head(y, n+1) - tail(y, n+1) で連続する要素間の差分を計算します:
ステップ 3: sqr と sum によるペナルティ
sum(sqr(diff)) は $\sum_{i=0}^{n} (y_i - y_{i+1})^2$ を計算します。 各 $y_i \in {0, 1}$ なので、各二乗差分は 0 または 1 です。 この和は $y$ における遷移(0 から 1 または 1 から 0 への変化)の回数を数えます。
ドメインウォールパターンは遷移が正確に1回(1 から 0 への変化)なので、 最小エネルギーは 1 であり、$n+1$ 個すべてのドメインウォールパターンがこの最小値を達成します。
出力
f = 1 +2*x[1] +2*x[2] +2*x[3] +2*x[4] +2*x[5] +2*x[6] +2*x[7] -2*x[0]*x[1] -2*x[1]*x[2] -2*x[2]*x[3] -2*x[3]*x[4] -2*x[4]*x[5] -2*x[5]*x[6] -2*x[6]*x[7]
energy = 1
solutions = 9
00000000 (sum = 0)
10000000 (sum = 1)
11000000 (sum = 2)
11100000 (sum = 3)
11110000 (sum = 4)
11111000 (sum = 5)
11111100 (sum = 6)
11111110 (sum = 7)
11111111 (sum = 8)
9つの最適解はすべてドメインウォールパターンで、整数 0 から 8 を表現しています。
Dual-Matrix Domain Wall
Dual-Matrix Domain Wall 法は、異なるサイズの2つのバイナリ行列を使用して $n \times n$ の置換行列を構築します: x($(n{-}1) \times n$、列方向ドメインウォール)と y($n \times (n{-}1)$、行方向ドメインウォール)。 ガードビットを追加して隣接差分を取ると、それぞれ $n \times n$ のone-hot行列が得られます。 これらを一致させることで、各行・各列にちょうど1つの1を持つ置換行列になります。 詳細は https://arxiv.org/abs/2308.01024 を参照してください。
#include <qbpp/qbpp.hpp>
#include <qbpp/easy_solver.hpp>
int main() {
const size_t n = 6;
auto x = qbpp::var("x", n - 1, n); // (n-1) x n
auto y = qbpp::var("y", n, n - 1); // n x (n-1)
// x: dim=0 でガード行追加 -> (n+1) x n、差分 -> n x n(各列one-hot)
auto xg = qbpp::concat(1, qbpp::concat(x, 0, 0), 0);
auto x_oh = qbpp::head(xg, n, 0) - qbpp::tail(xg, n, 0);
auto x_dw = qbpp::sum(qbpp::sqr(x_oh));
// y: dim=1 でガードビット追加 -> n x (n+1)、差分 -> n x n(各行one-hot)
auto yg = qbpp::concat(1, qbpp::concat(y, 0, 1), 1);
auto y_oh = qbpp::head(yg, n, 1) - qbpp::tail(yg, n, 1);
auto y_dw = qbpp::sum(qbpp::sqr(y_oh));
// 一致制約: x_oh == y_oh(転置不要、両方 n x n)
auto match = qbpp::sum(x_oh - y_oh == 0);
auto f = x_dw + y_dw + match;
f.simplify_as_binary();
auto solver = qbpp::easy_solver::EasySolver(f);
auto sol = solver.search({{"target_energy", std::to_string(static_cast<int64_t>(2 * n))}});
std::cout << "energy = " << sol.energy() << std::endl;
std::cout << "x (" << n-1 << "x" << n << ") x_oh (" << n << "x" << n << ")" << std::endl;
for (size_t i = 0; i < n; ++i) {
if (i < n - 1) {
for (size_t j = 0; j < n; ++j) std::cout << sol(x[i][j]);
} else {
for (size_t j = 0; j < n; ++j) std::cout << " ";
}
std::cout << " -> ";
for (size_t j = 0; j < n; ++j) std::cout << sol(x_oh[i][j]);
std::cout << std::endl;
}
std::cout << "y (" << n << "x" << n-1 << ") y_oh (" << n << "x" << n << ")" << std::endl;
for (size_t i = 0; i < n; ++i) {
for (size_t j = 0; j < n - 1; ++j) std::cout << sol(y[i][j]);
std::cout << " -> ";
for (size_t j = 0; j < n; ++j) std::cout << sol(y_oh[i][j]);
std::cout << std::endl;
}
}
仕組み
-
xは $(n{-}1) \times n$。concat(1, concat(x, 0, 0), 0)でdim=0に沿ってガード行を追加すると $(n{+}1) \times n$ となり、各列がドメインウォール。head - tailで $n \times n$ の行列x_ohを得て、各列がone-hotになります。 -
yは $n \times (n{-}1)$。concat(1, concat(y, 0, 1), 1)でdim=1に沿ってガードビットを追加すると $n \times (n{+}1)$ となり、各行がドメインウォール。head - tailで $n \times n$ の行列y_ohを得て、各行がone-hotになります。 -
x_oh == y_oh: 両方 $n \times n$ なので、転置なしで直接比較できます。一致させると、各行・各列にちょうど1つの1がある置換行列になります。
出力
energy = 12
x (5x6) x_oh (6x6)
111101 -> 000010
111100 -> 000001
110100 -> 001000
010100 -> 100000
010000 -> 000100
-> 010000
y (6x5) y_oh (6x6)
11110 -> 000010
11111 -> 000001
11000 -> 001000
00000 -> 100000
11100 -> 000100
10000 -> 010000
最適エネルギーは $2n = 12$ です。x_oh と y_oh は一致し、有効な $6 \times 6$ の置換行列を形成しています。
軸固定スライス(slice, row, col)
多次元配列から特定の軸を固定してサブ配列を取得するには、slice、row、col を使います。
row、col、軸固定 slice はグローバル関数のみで、元の配列を変更せず新しいサブ配列を返します。
row(i) と col(j)
row(i) は axis 0 を index i に固定、col(j) は axis 1 を index j に固定します:
auto x = qbpp::var("x", 3, 4); // 3×4
auto row0 = qbpp::row(x, 0); // {x[0][0], x[0][1], x[0][2], x[0][3]}
auto col2 = qbpp::col(x, 2); // {x[0][2], x[1][2], x[2][2]}
// row(), col() はグローバル関数のみ(メンバ関数版はありません)
行同士の要素毎積を取る例:
auto prod = qbpp::row(x, 0) * qbpp::row(x, 1); // Array<1, Term>(4要素)
auto s = qbpp::sum(prod); // Expr
slice
slice は複数の軸を同時に固定できます:
auto z = qbpp::var("z", 2, 3, 4); // 2×3×4
// グローバル(非破壊)
auto s1 = qbpp::slice(z, {{0, 1}}); // axis 0 を 1 に固定 → 3×4
auto s2 = qbpp::slice(z, {{0, 1}, {2, 3}}); // axis 0=1, axis 2=3 に固定 → 3要素
// 軸固定 slice() はグローバル関数のみ(メンバ関数版はありません)
範囲外のインデックスや重複する軸を指定した場合は実行時エラーになります。
NOTE
operator[]は全次元を指定してスカラー値を取得するためのもので、途中の次元で止めてサブ配列を取得することはできません。 サブ配列が必要な場合はqbpp::row()、qbpp::col()、qbpp::slice()を使用してください。