Skip to main content
https://img.shields.io/pypi/v/dwave-qbsolv.svg https://codecov.io/gh/dwavesystems/qbsolv/branch/master/graph/badge.svg https://travis-ci.org/dwavesystems/qbsolv.svg?branch=master https://ci.appveyor.com/api/projects/status/y2f7rqxvepn4ak4b/branch/master?svg=true https://readthedocs.com/projects/d-wave-systems-qbsolv/badge/?version=latest https://circleci.com/gh/dwavesystems/qbsolv.svg?style=svg

Qbsolv

A decomposing solver that finds a minimum value of a large quadratic unconstrained binary optimization (QUBO) problem by splitting it into pieces. The pieces are solved using a classical solver running the tabu algorithm. qbsolv also enables configuring a D-Wave system as the solver.

Installation or Building

Python

A wheel might be available for your system on PyPI. Source distributions are provided as well.

pip install dwave-qbsolv

Alternatively, you can build the library with setuptools.

pip install -r python/requirements.txt
pip install cython==0.27
python setup.py install

C

To build the C library use cmake to generate a build command for your system. On Linux the commands would be something like this:

mkdir build; cd build
cmake ..
make

To build the command line interface turn the cmake option QBSOLV_BUILD_CMD on. The command line option for cmake to do this would be -DQBSOLV_BUILD_CMD=ON. To build the tests turn the cmake option QBSOLV_BUILD_TESTS on. The command line option for cmake to do this would be -DQBSOLV_BUILD_TESTS=ON.

Command Line Usage

qbsolv -i infile [-o outfile] [-m] [-T] [-n] [-S SubMatrix] [-w]
    [-h] [-a algorithm] [-v verbosityLevel] [-V] [-q] [-t seconds]

Description

qbsolv executes a quadratic unconstrained binary optimization (QUBO) problem represented in a file. It returns bit-vector results that minimizes—or optionally, maximizes—the value of the objective function represented by the QUBO. The problem is represented in QUBO(5) file format.

The QUBO input problem is not limited to the graph size or connectivity of a sampler, for example the D-Wave system.

Options are as follows:

-i infile
    Name of the file for the input QUBO. This option is mandatory.
-o outfile
    Optional output filename.
    Default is the standard output.
-a algorithm
    Optional selection for the outer loop algorithm.  Default is o.
    'o' for original qbsolv method. Submatrix based upon change in energy.
    'p' for path relinking.  Submatrix based upon differences of solutions
-m
    Optional selection of finding the maximum instead of the minimum.
-T target
    Optional argument target value of the objective function. Stops execution when found.
-t timeout
    Optional timeout value. Stops execution when the elapsed CPU time equals or
    exceeds it. Timeout is only checked after completion of the main
    loop. Other halt values such as 'target' and 'repeats' halt before 'timeout'.
    Default value is 2592000.0.
-n repeats
    Optional number of times the main loop of the algorithm is repeated with
    no change in optimal value found before stopping.
    Default value is 50.
-S subproblemSize
    Optional size of the sub-problems into which the QUBO is decomposed.
    If no "-S 0" or "-S" argument is present, uses the size specified in the
    embedding file found in the workspace set up by DW. If no DW environment is
    established, value defaults to 47 and uses the tabu solver on subproblems.
    If a value is specified, subproblems based on that size are solved with the
    tabu solver.
-w
    If present, the QUBO matrix and result are printed in .csv format.
-h
    If present, prints the help or usage message for qbsolv and exits without execution.
-v verbosityLevel
    Optional setting of the verbosity of output. The default verbosityLevel of
    0 outputs the number of bits in the solution, the solution,
    and the energy of the solution.  A verbosityLevel of 1 outputs the same
    information for multiple solutions, if found. A verbosityLevel of 2
    also outputs more detailed information at each step of the algorithm. The
    information increases for verbosity levels of up to 4.
-V
    If present, prints the version number of the qbsolv program and exits without execution.
-q
    If present, prints the format of the QUBO file.
-r seed
    Used to reset the seed for the random number generation.

qbsolv QUBO Input File Format

A .qubo file contains data that describes an unconstrained quadratic binary optimization problem. It is an ASCII file comprising four types of lines:

  1. Comments defined by a “c” in column 1. Comments may appear anywhere in the file, and are ignored.

  2. Program line defined by a “p” in the first column. A single program line must be the first non-comment line in the file. The program line has six required fields separated by space(s), as in this example:

    p   qubo  topology   maxNodes   nNodes   nCouplers

    where:

    p          Problem line sentinel.
    qubo       File type identifier.
    topology   String that identifies the topology of the problem and the specific
               problem type. For an unconstrained problem, target is "0" or
               "unconstrained." In future implementations, valid strings
               might include "chimera128" or "chimera512" (among others).
    maxNodes   Number of nodes in the topology.
    nNodes     Number of nodes in the problem (nNodes <= maxNodes).
               Each node has a unique number and must take a value in the range
               {0 - (maxNodes-1)}. A duplicate node number is an error. Node
               numbers need not be in order, and need not be contiguous.
    nCouplers  Number of couplers in the problem. Each coupler is a unique connection
               between two different nodes. The maximum number of couplers is (nNodes)^2.
               A duplicate coupler is an error.
  3. nNodes clauses. Each clause is made up of three numbers, separated by one or more blanks. The first two numbers must be integers and are the number for this node (repeated). The node number must be in range {0 , (maxNodes-1)}. The third value is the weight associated with the node. Weight may be an integer or float, and can take on any positive or negative value, or be set to zero.

  4. nCouplers clauses. Each clause is made up of three numbers, separated by one or more blanks. The first two numbers, (i and j), are the node numbers for this coupler and must be different integers, where (i < j).Each number must be one of the nNodes valid node numbers (and thus in range {0, (maxNodes-1)}). The third value is the strength associated with the coupler. Strength may be an integer or float, and can take on any positive or negative value, but not zero. Every node must connect with at least one other node (thus must have at least one coupler connected to it).

Here is a simple QUBO file example for an unconstrained QUBO with 4 nodes and 6 couplers. This example is provided to illustrate the elements of a QUBO benchmark file, not to represent a real problem.

| <--- column 1
c
c  This is a sample .qubo file
c  with 4 nodes and 6 couplers
c
p  qubo  0  4  4  6
c ------------------
0  0   3.4
1  1   4.5
2  2   2.1
3  3   -2.4
c ------------------
0  1   2.2
0  2   3.4
1  2   4.5
0  3   -2
1  3   4.5678
2  3   -3.22

Library usage

TODO

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dwave-qbsolv-0.3.2.tar.gz (87.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dwave_qbsolv-0.3.2-cp39-cp39-win_amd64.whl (57.8 kB view details)

Uploaded CPython 3.9Windows x86-64

dwave_qbsolv-0.3.2-cp39-cp39-win32.whl (50.8 kB view details)

Uploaded CPython 3.9Windows x86

dwave_qbsolv-0.3.2-cp39-cp39-manylinux1_x86_64.whl (205.2 kB view details)

Uploaded CPython 3.9

dwave_qbsolv-0.3.2-cp39-cp39-manylinux1_i686.whl (194.1 kB view details)

Uploaded CPython 3.9

dwave_qbsolv-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl (68.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

dwave_qbsolv-0.3.2-cp38-cp38-win_amd64.whl (58.2 kB view details)

Uploaded CPython 3.8Windows x86-64

dwave_qbsolv-0.3.2-cp38-cp38-win32.whl (51.0 kB view details)

Uploaded CPython 3.8Windows x86

dwave_qbsolv-0.3.2-cp38-cp38-manylinux1_x86_64.whl (218.1 kB view details)

Uploaded CPython 3.8

dwave_qbsolv-0.3.2-cp38-cp38-manylinux1_i686.whl (203.6 kB view details)

Uploaded CPython 3.8

dwave_qbsolv-0.3.2-cp38-cp38-macosx_10_9_x86_64.whl (67.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dwave_qbsolv-0.3.2-cp37-cp37m-win_amd64.whl (57.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

dwave_qbsolv-0.3.2-cp37-cp37m-win32.whl (50.2 kB view details)

Uploaded CPython 3.7mWindows x86

dwave_qbsolv-0.3.2-cp37-cp37m-manylinux1_x86_64.whl (204.7 kB view details)

Uploaded CPython 3.7m

dwave_qbsolv-0.3.2-cp37-cp37m-manylinux1_i686.whl (190.5 kB view details)

Uploaded CPython 3.7m

dwave_qbsolv-0.3.2-cp37-cp37m-macosx_10_9_x86_64.whl (67.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dwave_qbsolv-0.3.2-cp36-cp36m-win_amd64.whl (57.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

dwave_qbsolv-0.3.2-cp36-cp36m-win32.whl (50.2 kB view details)

Uploaded CPython 3.6mWindows x86

dwave_qbsolv-0.3.2-cp36-cp36m-manylinux1_x86_64.whl (205.3 kB view details)

Uploaded CPython 3.6m

dwave_qbsolv-0.3.2-cp36-cp36m-manylinux1_i686.whl (191.5 kB view details)

Uploaded CPython 3.6m

dwave_qbsolv-0.3.2-cp36-cp36m-macosx_10_9_x86_64.whl (68.5 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dwave_qbsolv-0.3.2-cp35-cp35m-win_amd64.whl (53.7 kB view details)

Uploaded CPython 3.5mWindows x86-64

dwave_qbsolv-0.3.2-cp35-cp35m-win32.whl (47.8 kB view details)

Uploaded CPython 3.5mWindows x86

dwave_qbsolv-0.3.2-cp35-cp35m-manylinux1_x86_64.whl (201.1 kB view details)

Uploaded CPython 3.5m

dwave_qbsolv-0.3.2-cp35-cp35m-manylinux1_i686.whl (186.9 kB view details)

Uploaded CPython 3.5m

dwave_qbsolv-0.3.2-cp35-cp35m-macosx_10_9_x86_64.whl (65.9 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

Details for the file dwave-qbsolv-0.3.2.tar.gz.

File metadata

  • Download URL: dwave-qbsolv-0.3.2.tar.gz
  • Upload date:
  • Size: 87.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for dwave-qbsolv-0.3.2.tar.gz
Algorithm Hash digest
SHA256 aca74f909748cd02d3e59647ae6c81585dd75afcf53a19fa116580c7c7873782
MD5 ceb7c54038bfbc65912685adb1fc54e5
BLAKE2b-256 06cbdb81fc1ad126dc82f4cdb4a3f4eba5609d1fde8126a5420238dda64ec7c8

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 57.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0

File hashes

Hashes for dwave_qbsolv-0.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 525a5d2456dc733ab1a47977b5cdaa26ec4f5356e10784bfafc736d66ba00d14
MD5 59a7389f5b1d9103c76717258bd969d6
BLAKE2b-256 5a251478aefadf834a67fca0527fcc8611e57963e3342e5b4a8bb2880e7cd6d0

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 50.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0

File hashes

Hashes for dwave_qbsolv-0.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 619d07e01a37b2a090181445fb2146b55ec93629ce92b3254a1354dd64b6aabb
MD5 9bee04a073e17e8eb477505d2eb845a3
BLAKE2b-256 12bc7bbbd7f4a5187b9593cf79e10983938129b2e5370c9fea65c8655d02996f

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 205.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for dwave_qbsolv-0.3.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8dd4cebaf431a3e64d134b5523223c36a54b276c9cbc3f938a6533c316cc3922
MD5 64b323b636b1ab72aa356fa698c2f829
BLAKE2b-256 c53c6238a3c6170adf4ff67295a786e7745bd1a9cf948084087abfabb5f40f15

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 194.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for dwave_qbsolv-0.3.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5124f77eae4181f2d7afebc0efb440315ba6c76490b8d44a37a989a1a76fcf84
MD5 0d0715daf47394e26197ba77904eba9c
BLAKE2b-256 70292c9518974cbdf34b01a2aa17788dac92e9f3d01475854a645d39eae70016

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 68.2 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0

File hashes

Hashes for dwave_qbsolv-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0070b814a6546371c9560501f889b5bcc9a27b2451aa9af560daf98ef69271b0
MD5 c87b74fde3534565283a29052a6c0eb4
BLAKE2b-256 e7ba0e7517ac03c99a1b4de3b9aa4c3bda1796e6bce7e073b3744efb69b4fc5c

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 58.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for dwave_qbsolv-0.3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bf201496463a2e995fc0d9881c9b064e3b8f46e1cb68c24688132ed46035107e
MD5 7ebe445dead79488d8e07ccbc72a8391
BLAKE2b-256 c5073f4363cc55497a567e20bb3178c6a5502b2092904b6a4e988e884a33dba2

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 51.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for dwave_qbsolv-0.3.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f3948bfbc328851ef660934f82b891f35f7e0a541c4fbe2a40a6812912454224
MD5 eedf12b88ffb5640d5f138f30459be9d
BLAKE2b-256 0494acf7d272685cee3e3352a906e1bc1084e082bc6dd9b0a9181ab0b37a0fa5

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 218.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for dwave_qbsolv-0.3.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 209b60d39fad39c008ef37928019d9684c08d591ed9093be8c56a15346e6493d
MD5 3264ff7a9eddf567e96e0481dd3cf986
BLAKE2b-256 d82819ce98da330d1b471061a49c5d69a733c01efe846625b3ced4e2d6c0db33

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 203.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for dwave_qbsolv-0.3.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb80d957e4d481e9b07e021984deb1c057664992c0a8df6598f9f577e29b6948
MD5 a9ac0c26d0cfe349852b75fb68f4b242
BLAKE2b-256 fbfe62f435f13fa88fc746c800ba9af844bc53e4e31375bafd2dd12f1a185688

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 67.4 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for dwave_qbsolv-0.3.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9cef5d8d6203d268ec750ce2b66c6c9e84e999696659a7c55385390ae9f1483b
MD5 47256eed2995ac7cb349148d73e1a56c
BLAKE2b-256 a6334d030770782eca7eb0bd1050232db6a671b0d6dc9366278fa933e3d284cf

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 57.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for dwave_qbsolv-0.3.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2362ab1e44fb5c81589dff91bf8c56e639df119da0c6c563ff0c769665efa813
MD5 ae36972194224b7b06a97e6f88b49c0c
BLAKE2b-256 020047875abe74d614db74f5b26ae60bdb4611b81b878a52e28c9c8d2f8e9b8f

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 50.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for dwave_qbsolv-0.3.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2db6f9e9c14bf71952f379d720196a8c02c359ea8ab426c9643f983ecceb9d29
MD5 b8f41952eaee784d0efafdeceb7caa88
BLAKE2b-256 b0c083bdc5e755edd547ae8b26200605acef002d20b1087818d0c5920ea0f93c

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 204.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for dwave_qbsolv-0.3.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dd50009b777a74887a260ff865beddb89944315b3606b570e74e66459bc3f089
MD5 d029e4a037335add3c5db761274c30c2
BLAKE2b-256 4f3a5bcfd681ed141866dc7a0e5b58de790236b6e7896cade92ecad16c1a3dca

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 190.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for dwave_qbsolv-0.3.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 07ca0261e00ae26a5da98a509d29fef418e97e9fd0c9d91801d807bc14c691d4
MD5 1685532832b72434fddc5de48ed5e328
BLAKE2b-256 9c5321eca614cb6d9d891ce71eec61f0f8e6c325de11d5387d21bbef165ac319

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 67.2 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for dwave_qbsolv-0.3.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a5511694e465cb5a29e436b953c0d72b79da9f9bec0e76405e4d1c3bf57a879
MD5 31ae271445c93d1536ccdba97a0c8c54
BLAKE2b-256 f90df208ade1ebe3c871cfa812683322f0345af33e5a3a091703627dd0efcceb

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 57.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.8

File hashes

Hashes for dwave_qbsolv-0.3.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8e338a6db8a5d254455ba62a609f3d789d13299a6961cc772e9a864d4aa2aa5e
MD5 49c33de386b62e7a3dc17f553fab99b1
BLAKE2b-256 d271af418d54834ee69960ec9b675ce2e55d5711e514fc7b3bfbd2ed05fe567c

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 50.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.8

File hashes

Hashes for dwave_qbsolv-0.3.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f164dc99fdcf921404279799b4a762dce804c528b9491c77be7ac761a6161d73
MD5 0609597bd761e7249144052858eb35bf
BLAKE2b-256 ae7ff8ae7889e8e0d6cd2591440d38f30a1a91e4202d69f0896da2491a917d4e

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 205.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for dwave_qbsolv-0.3.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 caec22e0c13dac8668a92269753af8339ba109b1d7ef2aa3bfc6a652fb5760f1
MD5 b11761b7dddf74b7b8c7422ab1a6aa07
BLAKE2b-256 f77711cf1b73b9d5008887f30f50658626dfd34eb93b9b1a687d5f9dd41654d8

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 191.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for dwave_qbsolv-0.3.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b2d817fea45217f248439388c1f7b25134a6d89a726862e88007b3f7a922e5a
MD5 90d2abfa95bf425a18f7471ad26061ca
BLAKE2b-256 b25dd375bfd6d04e305dbef7e263649ed95a092c3d0742c1c48aa29d65ea9ec5

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 68.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.12

File hashes

Hashes for dwave_qbsolv-0.3.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 535aaace96b5bb01762e1b9bf3cbf73ba8844c3ecc7d9c4a1969b01212d2d2cf
MD5 59e968b60c44a87f1817ab49b1ab1da8
BLAKE2b-256 941b67e3c0fe24e240db1beb389d9d0b6b79db64cc05afcbd7fb946dae492252

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 53.7 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.5.4

File hashes

Hashes for dwave_qbsolv-0.3.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 729235549c8d85060eb1c7942168fe9d1374a2bc77a8bf9f500c51759db18fc5
MD5 88e48b89c810b4ea1858afa6952bf891
BLAKE2b-256 f31e906c1b84beeb783c330cda1b69a91b52438706720a08443af64081639796

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 47.8 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.5.4

File hashes

Hashes for dwave_qbsolv-0.3.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c252ff130480712160cb425c34edb466c86b83ed50a54abc63a9c70085c2d559
MD5 50a7788567208508312d9ab2af8022c0
BLAKE2b-256 d6389047cb708c470d7a3e9edede1bb89f993da4ae9b367377b9025bc4ed7d8a

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 201.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for dwave_qbsolv-0.3.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 009cf5d968639b96ba650d75e833963eed2e5de8302edaf8e986c046cabaeac3
MD5 8e7f3228221ddb271706066235dd1927
BLAKE2b-256 c3bf704612663d4c68d45e9b4007d62bec259826d7df0f44d687a0bb43f18ef8

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 186.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for dwave_qbsolv-0.3.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e5994c103c2fa30007836ccd8651426b7e9e362378257713e08cdc65b555fd1
MD5 7ddbc986dac437090e297ad42959a614
BLAKE2b-256 469ce48d00c0e7456e3894b8e0ea0e45a8539cada8beea149e8cb3d72c4c47a4

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.3.2-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.3.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 65.9 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.5.10

File hashes

Hashes for dwave_qbsolv-0.3.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6d387624f8e919d586100a4e2b9183b7689fa8d8cabe0fac0e42d2a90ad7300
MD5 100dfef23f250aac036a5f0cc43457fa
BLAKE2b-256 0eac63ddcf849ff2d4e20358c0ea197e0470fb2d9304b214557d4ebe085a178f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page