Skip to main content
qbsolv
======

[![Build Status](https://travis-ci.org/dwavesystems/qbsolv.svg?branch=master)](https://travis-ci.org/dwavesystems/qbsolv)
[![Build status](https://ci.appveyor.com/api/projects/status/y2f7rqxvepn4ak4b/branch/master?svg=true)](https://ci.appveyor.com/project/dwave-adtt/qbsolv/branch/master)

A decomposing solver, finds a minimum value of a large quadratic unconstrained binary optimization (QUBO) problem by
splitting it into pieces solved either via a D-Wave system or a classical tabu solver.

_(Note that qbsolv by default uses its internal classical solver. Access to a D-Wave system must be arranged separately.)_

Installation or Building
------------------------

#### Python

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

```bash
pip install dwave-qbsolv
```

Alternately, you can build the library with setuptools

```bash
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, providing bit-vector
result(s) that minimizes (or optionally, maximizes) the value of
the objective function represented by the QUBO. The problem is
represented in the QUBO(5) file format and notably is not limited
to the size or connectivity pattern of the D-Wave system on which
it will be executed.
The options are as follows:
-i infile
The name of the file in which the input QUBO resides. This
is a required option.
-o outfile
This optional argument denotes the name of the file to
which the output will be written. The default is the
standard output.
-a algorithm
This optional argument chooses nuances of the outer loop
algorithm. The 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
This optional argument denotes to find the maximum instead
of the minimum.
-T target
This optional argument denotes to stop execution when the
target value of the objective function is found.
-t timeout
This optional argument stops execution when the elapsed
cpu time equals or exceeds timeout value. Timeout is only checked
after completion of the main loop. Other halt values
such as 'target' and 'repeats' will halt before 'timeout'.
The default value is 2592000.0.
-n repeats
This optional argument denotes, once a new optimal value is
found, to repeat the main loop of the algorithm this number
of times with no change in optimal value before stopping.
The default value is 50.
-S subproblemSize
This optional argument indicates the size of the sub-
problems into which the QUBO will be decomposed. A
"-S 0" or "-S" argument not present indicates to use the
size specified in the embedding file found in the workspace
set up by DW. If a DW environment has not been established,
the value will default to (47) and will use the tabu solver
for subproblem solutions. If a value is specified, qbsolv uses
that value to create subproblem and solve with the tabu solver.
-w
If present, this optional argument will print the QUBO
matrix and result in .csv format.
-h
If present, this optional argument will print the help or
usage message for qbsolv and exit without execution.
-v verbosityLevel
This optional argument denotes the verbosity of output. A
verbosityLevel of 0 (the default) will output the number of
bits in the solution, the solution, and the energy of the
solution. A verbosityLevel of 1 will output the same
information for multiple solutions, if found. A
verbosityLevel of 2 will also output more detailed
information at each step of the algorithm. This increases
the output up to a value of 4.
-V
If present, this optional argument will emit the version
number of the qbsolv program and exit without execution.
-q
If present, this optional argument triggers printing 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 which describes an unconstrained
quadratic binary optimization problem. It is an ASCII file comprised
of four types of lines:

1) Comments - defined by a "c" in column 1. They may appear
anywhere in the file, and are otherwise ignored.

2) One program line, which starts with p in the first column.
The 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 the problem line sentinel
qubo identifies the file type
topology a string which identifies the topology of the problem
and the specific problem type. For an unconstrained problem,
target will be "0" or "unconstrained." Possible, for 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
the range {0 - (maxNodes-1)}. A duplicate node number is an
error. The node numbers need not be in order, and they 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. The
numbers are 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 {0 , (maxNodes-1)}.
The third value is the weight associated with the node, may be
an integer or float, and can take on any positive or negative
value, or zero.

4) nCouplers clauses. Each clause is made up of three numbers. The
numbers are separated by one or more blanks. The first two
numbers must be different integers and are the node numbers
for this coupler. The two values (i and j) must have (i < j).
Each number must be one of the nNodes valid node numbers (and
thus in {0, (maxNodes-1)}). The third value is the strength
associated with the coupler, 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

Contribution
------------

See `contrib.txt`


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.2.9.tar.gz (85.4 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.2.9-cp37-cp37m-win_amd64.whl (52.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

dwave_qbsolv-0.2.9-cp37-cp37m-win32.whl (45.8 kB view details)

Uploaded CPython 3.7mWindows x86

dwave_qbsolv-0.2.9-cp37-cp37m-manylinux1_x86_64.whl (198.7 kB view details)

Uploaded CPython 3.7m

dwave_qbsolv-0.2.9-cp37-cp37m-manylinux1_i686.whl (183.8 kB view details)

Uploaded CPython 3.7m

dwave_qbsolv-0.2.9-cp37-cp37m-macosx_10_13_x86_64.whl (61.5 kB view details)

Uploaded CPython 3.7mmacOS 10.13+ x86-64

dwave_qbsolv-0.2.9-cp36-cp36m-win_amd64.whl (52.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

dwave_qbsolv-0.2.9-cp36-cp36m-win32.whl (45.9 kB view details)

Uploaded CPython 3.6mWindows x86

dwave_qbsolv-0.2.9-cp36-cp36m-manylinux1_x86_64.whl (198.8 kB view details)

Uploaded CPython 3.6m

dwave_qbsolv-0.2.9-cp36-cp36m-manylinux1_i686.whl (183.9 kB view details)

Uploaded CPython 3.6m

dwave_qbsolv-0.2.9-cp36-cp36m-macosx_10_13_x86_64.whl (62.3 kB view details)

Uploaded CPython 3.6mmacOS 10.13+ x86-64

dwave_qbsolv-0.2.9-cp35-cp35m-win_amd64.whl (51.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

dwave_qbsolv-0.2.9-cp35-cp35m-win32.whl (45.5 kB view details)

Uploaded CPython 3.5mWindows x86

dwave_qbsolv-0.2.9-cp35-cp35m-manylinux1_x86_64.whl (196.1 kB view details)

Uploaded CPython 3.5m

dwave_qbsolv-0.2.9-cp35-cp35m-manylinux1_i686.whl (181.0 kB view details)

Uploaded CPython 3.5m

dwave_qbsolv-0.2.9-cp35-cp35m-macosx_10_13_x86_64.whl (61.6 kB view details)

Uploaded CPython 3.5mmacOS 10.13+ x86-64

dwave_qbsolv-0.2.9-cp34-cp34m-win_amd64.whl (50.5 kB view details)

Uploaded CPython 3.4mWindows x86-64

dwave_qbsolv-0.2.9-cp34-cp34m-win32.whl (45.6 kB view details)

Uploaded CPython 3.4mWindows x86

dwave_qbsolv-0.2.9-cp34-cp34m-manylinux1_x86_64.whl (198.8 kB view details)

Uploaded CPython 3.4m

dwave_qbsolv-0.2.9-cp34-cp34m-manylinux1_i686.whl (183.6 kB view details)

Uploaded CPython 3.4m

dwave_qbsolv-0.2.9-cp34-cp34m-macosx_10_13_x86_64.whl (61.8 kB view details)

Uploaded CPython 3.4mmacOS 10.13+ x86-64

dwave_qbsolv-0.2.9-cp27-cp27mu-manylinux1_x86_64.whl (182.7 kB view details)

Uploaded CPython 2.7mu

dwave_qbsolv-0.2.9-cp27-cp27mu-manylinux1_i686.whl (168.7 kB view details)

Uploaded CPython 2.7mu

dwave_qbsolv-0.2.9-cp27-cp27m-win_amd64.whl (51.5 kB view details)

Uploaded CPython 2.7mWindows x86-64

dwave_qbsolv-0.2.9-cp27-cp27m-win32.whl (45.1 kB view details)

Uploaded CPython 2.7mWindows x86

dwave_qbsolv-0.2.9-cp27-cp27m-manylinux1_x86_64.whl (182.7 kB view details)

Uploaded CPython 2.7m

dwave_qbsolv-0.2.9-cp27-cp27m-manylinux1_i686.whl (168.7 kB view details)

Uploaded CPython 2.7m

dwave_qbsolv-0.2.9-cp27-cp27m-macosx_10_13_x86_64.whl (61.8 kB view details)

Uploaded CPython 2.7mmacOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: dwave-qbsolv-0.2.9.tar.gz
  • Upload date:
  • Size: 85.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for dwave-qbsolv-0.2.9.tar.gz
Algorithm Hash digest
SHA256 10a4150ab9783dae9ec3b2dc3e2a89cacac8b2b7afe0e9bd3a7cd9c7fa553d6b
MD5 6f347ccb6b529d7752c2b665da216576
BLAKE2b-256 f808238e142010869b4546554b9185b27d14b74d5c766c7b704447f0d811a1e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 52.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for dwave_qbsolv-0.2.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f2430e85c9f882bf89e6f17550ae980d871f0821c6744311faa3de8f3177d9b9
MD5 3c040a77b377ef544518787ca092af02
BLAKE2b-256 eb5ba490d2eb0ee0ed22e25dacc1473072961bd7b61f4a9d040be0396edf9355

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 45.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for dwave_qbsolv-0.2.9-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 313e91136cba370a47a0592868ba0c1a10c730d505444f00cf9b3c0b2b779a21
MD5 b1aeca5e5acae16151db434567fc99e6
BLAKE2b-256 91f38ec21d5255b15ead654ced5558d21493fa7aaf84292eb1be780c0c77ead5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 198.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 57db912c0f22bb08e9ce3a6b18a92571762d8f1cb851881d2d08677d364eb5de
MD5 d14ebca8cebf2a75ac168d5d193640b7
BLAKE2b-256 4865f874fd2acd7014fe496dbe5e13af5a8c6031a6bdc7a2e4acdef3920ca182

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 183.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 489970ddfba17c9515cf4bd59352496cdbd247c51895969b471565c232091155
MD5 6aa02592be69a3aa6020601e92588c4e
BLAKE2b-256 d55da23157eff5d22d28160971710e1255fd342ba3eca54e671875ebcf89fcfb

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 61.5 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for dwave_qbsolv-0.2.9-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bd26a7e11337744e9dbfd095e71d4562116739f52b117581f59c9ee80c017d4a
MD5 dbe5aef4613c0005759ac68a3586b85c
BLAKE2b-256 cd46a3b355ee7146748619c05dfe3c1127987593cabf0db76a555172cfd66f98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 52.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.6

File hashes

Hashes for dwave_qbsolv-0.2.9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6c90b5aa17e12f854ea008be7c11da95e3462951a586c155165654c470a1d611
MD5 ceea1314e3fb43b232977055e078f84a
BLAKE2b-256 46e4dfd46830960d38e77b995c9c2dee0d8f1415c45bd3eec23501800e0dece9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 45.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.6

File hashes

Hashes for dwave_qbsolv-0.2.9-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 716b8ebf252ef0ff8e3dac0a05585e714a8f080f8d579bde07c1aa87471e73e4
MD5 75c375f669c07dc70c6142f0a1938cac
BLAKE2b-256 4d9cec3479f399b2ae1fdab1f65aaf71b800ead57a262bfa999ac36fc8c92975

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 198.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 712972033c1a0772401ccd851b7a9fb7a030d4fe2ddb4858ca6072c05bfbba12
MD5 43169dcbc78e154bab6c91cdc1e7db09
BLAKE2b-256 70ab3065c5ffeaec4abdbc07b32ad6632f328e1d4822296e22b6cea191188cb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 183.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 910dd3e86aae87ddccd54546ca95f75d1663c7a2444c9c2cbf9a09bf229a864b
MD5 114bcb248a51d9f900e89b354efaec0c
BLAKE2b-256 00466293f7f84ddfad006bf47565a893fc21359a3b9368fac4694141d7f66a62

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 62.3 kB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for dwave_qbsolv-0.2.9-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6bae468fbc51ed28f273a338ad966c45fcc1fbbc1bfc08101b8d4098834d9572
MD5 1f77e85c1bb40633cb819466c33d6d2e
BLAKE2b-256 5598347aa5da1972e86b5bc3475f99a799436b6040704b751bfd045561c31a40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 51.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.3

File hashes

Hashes for dwave_qbsolv-0.2.9-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 89c9e1ec887b195a1d0c4e2dbd3dc659120571c58ee6eb068166832666b06b84
MD5 18edb5bfc0b6f063c06702a2468b6ecd
BLAKE2b-256 2c1396e8b19f6d9b0ceaa4774aae9667ae969115079770a4973afaa9fe38c187

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 45.5 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.3

File hashes

Hashes for dwave_qbsolv-0.2.9-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 650539b1fb7068e9c49727bc5559213623afc837f62505678d5d27e90b8a406c
MD5 34aa5b5fadfab2996b5455ae278a3fca
BLAKE2b-256 69e99fb8a542e3470daabbaeb32b3f474529a76b8b86b863a4a399ac6db599b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 196.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 108cc462f72556ef79f59db8a102611a0851e5921838a309293bf431da7d9ea8
MD5 396e6f2a077a72a7a16b0681230ad9d5
BLAKE2b-256 be500fd8567adb74825eee4eb20e4c4b449d0aad7b1107251dd994600056fa71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 181.0 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cac4f923e9938f20b15e4dbf6a3ad55575ffeca5b7fcc4a6e47f2395b1b801a2
MD5 13a1290a865eb50d2c55bf7cec49c75f
BLAKE2b-256 3e1baefaa3de3a2da52e2d3662aa4cf71362d74350eb8e6e767f91a5f5a04450

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp35-cp35m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp35-cp35m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: CPython 3.5m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.5

File hashes

Hashes for dwave_qbsolv-0.2.9-cp35-cp35m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a99d0e72a91e36f1f7984af8ec4f60ed8122bf5b05d37e831bf6a4f8f752fd3e
MD5 e510f65460dfa5ca0b73de810d97cacb
BLAKE2b-256 2fc1020ca2af0468c3495893582782569aa1526bb612cbd1de952808fc886da9

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 50.5 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.4.4

File hashes

Hashes for dwave_qbsolv-0.2.9-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 5b618186bfca4e495022bab25c133e347ab1cb0eac9b67325f5a506e5bc2ee70
MD5 419a7364331f113175d2a02f0eb0e365
BLAKE2b-256 de12d3170af022dd9f8d4d5475e4d4be75903e9a6186d8e338dfed1b21d6fdc7

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp34-cp34m-win32.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 45.6 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.4.4

File hashes

Hashes for dwave_qbsolv-0.2.9-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 4da4f38629008e26776f612f1fd081f2e41fad1705b8aa2cd1b1b9af1bd0cef0
MD5 12336efc61e7d02c352944fcb1f1d6e8
BLAKE2b-256 7bd726e0d56331d1348a074a1c560520882269025b152e753308fe5979d911f4

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 198.8 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 df8c3320f7400a8693ea2c0d912527e951128b34e9a58525b8a5278eb50bce4a
MD5 2ac895098aef7626bb9b2bf8961d0ad9
BLAKE2b-256 4ada90c7e3aee61b6468b850a762afad65dcfcf89e32b22d5fc55cbf5c3a18f5

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 183.6 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 43e662d8cc8459206bf08e545924801a843c313f537c196757bb9f48edd1cb68
MD5 d23a48b7f5c1b432ac9e69c693d91323
BLAKE2b-256 00fcb279e6a507046863ea53711a8cc2c33957a71fa144bd97187357eee9157b

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp34-cp34m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp34-cp34m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 61.8 kB
  • Tags: CPython 3.4m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.4.8

File hashes

Hashes for dwave_qbsolv-0.2.9-cp34-cp34m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b3f4de4c07936c96c14f72e75113c1a0a9a5864acfe088715c593a2594412611
MD5 15cd7623c2eb766c205798622dba2200
BLAKE2b-256 af470d010e8b1f84b08237af71f88031723e593805cfc7e92745fb38c9bd3a0d

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 182.7 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 81d2720c4f81431433cadc44423ecd3c9753fc45ab3b74b5470d9340492c7edb
MD5 af41e2570e122001c6c207c71a9b4f46
BLAKE2b-256 039de7f2438cfdee92c82b0e292b686af774328b2f08216356f12f0cdd9ca001

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 168.7 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd77840f4edcfe9c245aabe9a5d41b68d58ee141a25040748bcebc998933baa4
MD5 bc887fb4ba92db675f679f5d3973a17c
BLAKE2b-256 3522dc3e98cad064ecdc3e6582d352363e57bf4cdf2b1c39af25632f7c70ae0f

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 51.5 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for dwave_qbsolv-0.2.9-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 60f4204bb27a2dd4e1ca7badfbb43a1e5371d3489f8bdb43b03917c722fbb538
MD5 dc9df20606884048a9dfec55c8e72335
BLAKE2b-256 0bb2792aed17af8caad6538b727ab72c2c42bcaa5eb92961abc1a8de5c98c652

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp27-cp27m-win32.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 45.1 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for dwave_qbsolv-0.2.9-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 d5cd7c1e3deb99dc66ee4c2c8880817e8d6587bcf58b7e0b92cc410a6024dc4d
MD5 444faf8f62300aa2b1ce10bce0686876
BLAKE2b-256 3ae019be4ac82a4da94cac860530e036ed7d8836d269b335cec1f7b41ca8daac

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 182.7 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d0935960af15365cfacf6cf959a0ef874a380682ebfe46c7b11f023340d5d10f
MD5 15a1b0cf89fb4574733f2a044cb0d50e
BLAKE2b-256 291b6d9303510f2e0f44511efb1632d271d16d1c15e029be2b9bbe857ffa231e

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 168.7 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for dwave_qbsolv-0.2.9-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ebbda71a33d5ac76c4c66fe1133f5054d8eaf68cce8fda9ecc63e65a692290e
MD5 127a43d194c5595f68e0f37525230cfa
BLAKE2b-256 c4e16673fb22dd1a982af19c58b8ad6ecda709c31a90fa064e16b88cc4594ce6

See more details on using hashes here.

File details

Details for the file dwave_qbsolv-0.2.9-cp27-cp27m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: dwave_qbsolv-0.2.9-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 61.8 kB
  • Tags: CPython 2.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for dwave_qbsolv-0.2.9-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e7dcf392926bab624b54117cd7b57074441bc05c78b0ae12c56355768ca3bc68
MD5 4127de3ee02ad4520344a08d71a13960
BLAKE2b-256 c252e73adffa0f2e8ac072851088c9f312edcdd51572c238d3edb5e394ce2464

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