ABS3 Solver Usage

Solving an expression f using the ABS3 Solver involves the following two steps:

  1. Create an ABS3Solver object for the expression f.
  2. Call the search() method with a parameter dict, which returns the obtained solution.

Solving LABS problem using the ABS3 Solver

The following program solves the Low Autocorrelation Binary Sequence (LABS) problem using the ABS3 Solver:

import pyqbpp as qbpp

size = 100
x = qbpp.var("x", size)
f = qbpp.expr()
for d in range(1, size):
    temp = qbpp.expr()
    for i in range(size - d):
        temp += (2 * x[i] - 1) * (2 * x[i + d] - 1)
    f += qbpp.sqr(temp)
f.simplify_as_binary()

solver = qbpp.ABS3Solver(f)
solver.callback(lambda energy, tts, event: print(f"TTS = {tts:.3f}s Energy = {energy}"))
sol = solver.search({"time_limit": 10.0})
bits = "".join("-" if sol(x[i]) == 0 else "+" for i in range(size))
print(f"{sol.energy}: {bits}")

In this program, an ABS3Solver object is created for the expression f. The callback() sets a function that prints the energy and TTS of newly found best solutions, and search parameters such as time_limit are passed as a dict to search().

This program produces output similar to the following:

TTS = 0.002s Energy = 1218
TTS = 0.002s Energy = 1170
TTS = 0.002s Energy = 994
TTS = 0.015s Energy = 958
TTS = 0.018s Energy = 922
TTS = 0.034s Energy = 874
TTS = 4.364s Energy = 834
834: -+--+---++-++-+---++-++--+++--+-+-+++++----+++-+-+---++-+--+-----+--+----++----+-+--++++++---+------

ABS3 Solver object

An ABS3Solver object is created for a given expression. An optional second argument gpu controls GPU usage:

  • ABS3Solver(f): Automatically uses all available GPUs. If no GPU is available, falls back to CPU-only mode.
  • ABS3Solver(f, 0): Forces CPU-only mode (no GPU is used).
  • ABS3Solver(f, n): Uses n GPUs.

Search Parameters

The search(params) method runs the search. The params dict can contain the following keys:

Key Type Description
time_limit float Time limit in seconds
target_energy int Target energy for early termination
enable_default_callback int (0 or 1) Print energy and TTS when a new best solution is found
cpu_enable int (0 or 1) Enables/disables the CPU solver alongside the GPU (default: 1)
cpu_thread_count int Number of CPU solver threads (default: auto)
block_count int Number of CUDA blocks per GPU
thread_count int Number of threads per CUDA block
topk_sols int Collect the top-K solutions with the best energies
best_energy_sols int Collect all optimal solutions (0 for unlimited)

Multiple Solutions

When topk_sols or best_energy_sols is set, the solver collects multiple solutions. These can be retrieved by calling sol.sols() on the returned Sol, which returns a list of Sol objects sorted in increasing order of energy.

solver = qbpp.ABS3Solver(f)
sol = solver.search({"topk_sols": 5})
for s in sol.sols():
    print(f"energy = {s.energy}")

Custom Callback

The built-in callback (enabled by enable_default_callback) simply prints the energy and TTS whenever a new best solution is found. For more control, use the callback(func) method to set a custom callback function.

Simple callback with callback(func)

The function receives three arguments: energy (int), tts (float), and event (string). The event argument is one of:

Event Description
"start" Called once at the beginning of search()
"best_updated" Called whenever a new best solution is found
"timer" Called periodically at a configurable interval
solver = qbpp.ABS3Solver(f)
solver.callback(lambda energy, tts, event: print(f"TTS = {tts:.3f}s Energy = {energy}"))
sol = solver.search({"time_limit": 10.0})

Advanced callback with subclass

For access to timer() and hint(), subclass ABS3Solver and override the callback() method (no arguments). Inside callback(), the following are available:

  • self.event — the event that triggered this callback (int: 0=Start, 1=BestUpdated, 2=Timer)
  • self.best_sol — current best Sol object (energy, tts, get(var))
  • self.timer(seconds) — set the timer interval for periodic Timer callbacks. 0 disables the timer.
  • self.hint(sol) — feed a hint solution to the solver
class MyCallback(qbpp.ABS3Solver):
    def callback(self):
        if self.event == 0:       # Start
            self.timer(1.0)       # enable 1-second timer
        if self.event == 1:       # BestUpdated
            sol = self.best_sol
            print(f"TTS = {sol.tts:.3f}s Energy = {sol.energy}")

solver = MyCallback(f)
sol = solver.search({"time_limit": 10.0})

Properties

  • is_gpu: Returns True if the solver is using GPU acceleration.

Program Example: CPU-only mode

To use the ABS3 Solver without a GPU, pass 0 as the second argument:

solver = qbpp.ABS3Solver(f, 0)
sol = solver.search({"time_limit": 5.0, "target_energy": 0})
print(sol)

ABS3 Solverの使い方

ABS3 Solverを使用して式 f を解くには、以下の2つのステップで行います:

  1. f に対して ABS3Solver オブジェクトを作成する。
  2. パラメータのdictを指定して search() メソッドを呼び出し、得られた解を取得する。

ABS3 Solverを使用したLABS問題の求解

以下のプログラムは、ABS3 Solverを使用して Low Autocorrelation Binary Sequence (LABS) 問題を解きます:

import pyqbpp as qbpp

size = 100
x = qbpp.var("x", size)
f = qbpp.expr()
for d in range(1, size):
    temp = qbpp.expr()
    for i in range(size - d):
        temp += (2 * x[i] - 1) * (2 * x[i + d] - 1)
    f += qbpp.sqr(temp)
f.simplify_as_binary()

solver = qbpp.ABS3Solver(f)
solver.callback(lambda energy, tts, event: print(f"TTS = {tts:.3f}s Energy = {energy}"))
sol = solver.search({"time_limit": 10.0})
bits = "".join("-" if sol(x[i]) == 0 else "+" for i in range(size))
print(f"{sol.energy}: {bits}")

このプログラムでは、式 f に対して ABS3Solver オブジェクトを作成しています。 callback() で新しい最良解が見つかったときにエネルギーとTTSを表示する関数を設定し、time_limit などの探索パラメータは search() にdictとして渡しています。

このプログラムは以下のような出力を生成します:

TTS = 0.002s Energy = 1218
TTS = 0.002s Energy = 1170
TTS = 0.002s Energy = 994
TTS = 0.015s Energy = 958
TTS = 0.018s Energy = 922
TTS = 0.034s Energy = 874
TTS = 4.364s Energy = 834
834: -+--+---++-++-+---++-++--+++--+-+-+++++----+++-+-+---++-+--+-----+--+----++----+-+--++++++---+------

ABS3 Solverオブジェクト

ABS3Solver オブジェクトは、与えられた式に対して作成されます。 省略可能な第2引数 gpu でGPUの使用を制御します:

  • ABS3Solver(f): 利用可能なすべてのGPUを自動的に使用します。GPUが利用できない場合は、CPUのみのモードにフォールバックします。
  • ABS3Solver(f, 0): CPUのみのモードを強制します(GPUは使用されません)。
  • ABS3Solver(f, n): n 個のGPUを使用します。

探索パラメータ

search(params) メソッドで探索を実行します。params dict には以下のキーを指定できます:

キー 説明
time_limit float 制限時間(秒)
target_energy int 早期終了のための目標エネルギー
enable_default_callback int(0 または 1) 新しい最良解が見つかったときにエネルギーとTTSを表示
cpu_enable int(0 または 1) GPUと並行してCPUソルバーを有効/無効にする(デフォルト: 1)
cpu_thread_count int CPUソルバーのスレッド数(デフォルト: 自動)
block_count int GPU当たりのCUDAブロック数
thread_count int CUDAブロック当たりのスレッド数
topk_sols int エネルギーが最良の top-K 解を収集
best_energy_sols int すべての最適解を収集(0 で無制限)

複数解の取得

topk_sols または best_energy_sols を設定すると、複数の解が収集されます。 返された Sol に対して sol.sols() を呼び出すことで、エネルギーの昇順にソートされた Sol オブジェクトのリストを取得できます。

solver = qbpp.ABS3Solver(f)
sol = solver.search({"topk_sols": 5})
for s in sol.sols():
    print(f"energy = {s.energy}")

カスタムコールバック

組み込みコールバック(enable_default_callback で有効化)は、新しい最良解が見つかるたびにエネルギーとTTSを表示するだけです。 より細かい制御が必要な場合は、callback(func) メソッドでカスタムコールバック関数を設定します。

callback(func) によるシンプルなコールバック

関数は3つの引数を受け取ります: energy(int)、tts(float)、event(string)。 event は以下のいずれかです:

イベント 説明
"start" search() の開始時に1回呼び出される
"best_updated" 新しい最良解が見つかるたびに呼び出される
"timer" 設定可能な間隔で定期的に呼び出される
solver = qbpp.ABS3Solver(f)
solver.callback(lambda energy, tts, event: print(f"TTS = {tts:.3f}s Energy = {energy}"))
sol = solver.search({"time_limit": 10.0})

サブクラスによる高度なコールバック

timer()hint() にアクセスするには、ABS3Solver をサブクラス化して callback() メソッド(引数なし)をオーバーライドします。 callback() 内では以下が利用可能です:

  • self.event — コールバックを発火したイベント(int: 0=Start, 1=BestUpdated, 2=Timer)
  • self.best_sol — 現在の最良 Sol オブジェクト(energy, tts, get(var) が利用可能)
  • self.timer(seconds) — 定期的な Timer コールバックの間隔を設定。0 でタイマーを無効化。
  • self.hint(sol) — ソルバーにヒント解を注入
class MyCallback(qbpp.ABS3Solver):
    def callback(self):
        if self.event == 0:       # Start
            self.timer(1.0)       # 1秒ごとのタイマーを有効化
        if self.event == 1:       # BestUpdated
            sol = self.best_sol
            print(f"TTS = {sol.tts:.3f}s Energy = {sol.energy}")

solver = MyCallback(f)
sol = solver.search({"time_limit": 10.0})

プロパティ

  • is_gpu: ソルバーがGPUアクセラレーションを使用している場合に True を返します。

プログラム例: CPUのみのモード

GPUなしでABS3 Solverを使用するには、第2引数に 0 を渡します:

solver = qbpp.ABS3Solver(f, 0)
sol = solver.search({"time_limit": 5.0, "target_energy": 0})
print(sol)