Skip to main content

No project description provided

Project description

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

Project details


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.0.tar.gz (87.1 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.0-cp38-cp38-win_amd64.whl (57.7 kB view details)

Uploaded CPython 3.8Windows x86-64

dwave_qbsolv-0.3.0-cp38-cp38-win32.whl (51.2 kB view details)

Uploaded CPython 3.8Windows x86

dwave_qbsolv-0.3.0-cp38-cp38-manylinux1_x86_64.whl (216.8 kB view details)

Uploaded CPython 3.8

dwave_qbsolv-0.3.0-cp38-cp38-manylinux1_i686.whl (200.3 kB view details)

Uploaded CPython 3.8

dwave_qbsolv-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl (70.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dwave_qbsolv-0.3.0-cp37-cp37m-win_amd64.whl (57.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

dwave_qbsolv-0.3.0-cp37-cp37m-win32.whl (50.3 kB view details)

Uploaded CPython 3.7mWindows x86

dwave_qbsolv-0.3.0-cp37-cp37m-manylinux1_x86_64.whl (203.3 kB view details)

Uploaded CPython 3.7m

dwave_qbsolv-0.3.0-cp37-cp37m-manylinux1_i686.whl (187.4 kB view details)

Uploaded CPython 3.7m

dwave_qbsolv-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (69.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dwave_qbsolv-0.3.0-cp36-cp36m-win_amd64.whl (57.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

dwave_qbsolv-0.3.0-cp36-cp36m-win32.whl (50.4 kB view details)

Uploaded CPython 3.6mWindows x86

dwave_qbsolv-0.3.0-cp36-cp36m-manylinux1_x86_64.whl (204.6 kB view details)

Uploaded CPython 3.6m

dwave_qbsolv-0.3.0-cp36-cp36m-manylinux1_i686.whl (187.7 kB view details)

Uploaded CPython 3.6m

dwave_qbsolv-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl (71.5 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dwave_qbsolv-0.3.0-cp35-cp35m-win_amd64.whl (56.0 kB view details)

Uploaded CPython 3.5mWindows x86-64

dwave_qbsolv-0.3.0-cp35-cp35m-win32.whl (49.2 kB view details)

Uploaded CPython 3.5mWindows x86

dwave_qbsolv-0.3.0-cp35-cp35m-manylinux1_x86_64.whl (199.9 kB view details)

Uploaded CPython 3.5m

dwave_qbsolv-0.3.0-cp35-cp35m-manylinux1_i686.whl (183.1 kB view details)

Uploaded CPython 3.5m

dwave_qbsolv-0.3.0-cp35-cp35m-macosx_10_9_x86_64.whl (69.0 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dwave-qbsolv-0.3.0.tar.gz
  • Upload date:
  • Size: 87.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for dwave-qbsolv-0.3.0.tar.gz
Algorithm Hash digest
SHA256 645cb779d83be26c09f27e42cd69cc589f46c61122458e458832dab5f1bd67d7
MD5 7d8addffcf90e9e3fee58e2e750eb3a9
BLAKE2b-256 b8581649519a92247170eb1873dda3c17d51f6e922021faf13eb1eeed70aa27e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 57.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for dwave_qbsolv-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f44cc1a9d00ee8f9b63256a8e5ae16317ed9c526b792171d8a473f50339d9cff
MD5 d5d76427d96af048ec14806fa0763e3d
BLAKE2b-256 08b7623af2ab04ac48f79e0557b3050a9be2ae49782e2a43a73a924d36a6810d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 51.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for dwave_qbsolv-0.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9b2505f1d79fbbb21ddfde37854a7049558bc16dcd8ec6c1a31a9c59292090d5
MD5 8a6d95c7bca366a38589f1793d49eb6e
BLAKE2b-256 02dfac23b789083489c61f75f4840562c92ed08067e602afe282b2c586e33f5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 216.8 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for dwave_qbsolv-0.3.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bd4b6eb36b4c388d7c3a21bbb1280e772b75a7313327d3bd5473caf4d29b8161
MD5 dc07f3beaecffe082b9a9d7d0f015ddc
BLAKE2b-256 c9badab21083b2b4d3edde6613386d513eab496c5674270c623ee4bfb5509e20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 200.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for dwave_qbsolv-0.3.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 26e9475caf4e6ac9e9b8f08b1830dba2d28be0c77fe048edccb72b3e3118e9c6
MD5 dc0446967db246320dd717622a35c6b3
BLAKE2b-256 c092aaae00d98fa611be3a0204c7b142497f89b19ca1f22b811a7f2674bd744e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 70.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for dwave_qbsolv-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33c6da020bb1f4d90aa2c4cc69a55d5129d5075f9864aade63d17411e32c657e
MD5 617c45bab03f980dd3b63b4ff525f4a1
BLAKE2b-256 888f2fbdbdb2a97616d7dfabbd87762a67e68b21eb7713332ad5ef49098b14d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 57.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5

File hashes

Hashes for dwave_qbsolv-0.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f1f95622a993daea224d6bd4607d8362a108326854a1233187c11877e9f25f23
MD5 535a7831f33a07eca69e3c95c93866bd
BLAKE2b-256 6dca7a589a4cfe0f0c32f75bfd12d9a57305fdf3532a3f402016af7efaec40d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5

File hashes

Hashes for dwave_qbsolv-0.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a2aa6d856ca7bed1655c3be0f0ae12c5f66aec5a360d5acf854f639dfb9c75b3
MD5 3b7e4b645152904dc36519a0ce924365
BLAKE2b-256 b176a562c20a20e52fa5517f632f63ca64810b9fe18238616efdebaf3aaed459

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 203.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for dwave_qbsolv-0.3.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9d1a87476f0e395420cfdbddaf191dd7f632789955a32a8b65b184e4fc52ae4b
MD5 38efd2b34c677bb6c406b488e749fa16
BLAKE2b-256 6f5ff1c67bf84a5ada58e30e4735a1da9487007a85e7d78035c4248d8448a681

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 187.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for dwave_qbsolv-0.3.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a4f7ef133d0cd0c04b0deb97d235c92aa5ad416db345fa80613080f0a0bc180
MD5 a0605a25de49194b1af7b667a62f2eb1
BLAKE2b-256 8dad2f97d2135a994f906c42bd004354f27ab871b803944e11d87a35b343ad61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 69.3 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.4

File hashes

Hashes for dwave_qbsolv-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f46a0e782d958b4cbb7d8c04af50b4e753e9a4968623a2941735ecdf5c88e76b
MD5 ed846a38649beb972cb51a6e853b131d
BLAKE2b-256 62e72f7fede4d6a2d32f9a961904fb959d3f46f0b7cc6ced977724f42141f195

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 57.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8

File hashes

Hashes for dwave_qbsolv-0.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 070a41a7a911d74ecbf0ace56eb01a1dfbfc73649358419de96a5d256e550ef6
MD5 d0160fd15e746150a988373471f2f3d3
BLAKE2b-256 cf4dccb39a55bab813a71ec7e2ad9045fae49e3debdb1cd7d05502c9bebff659

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 50.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8

File hashes

Hashes for dwave_qbsolv-0.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0d47786e1d3ec41affee0e55b12fb93ee8884d0baad506f51b46a24a2ad88a8a
MD5 557dd99695bb4626f565cb17cd1dc4b9
BLAKE2b-256 deead26069e9bc5392e445b2fe2844a7d1a3a534a03836815845d5cacfb3fb52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 204.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for dwave_qbsolv-0.3.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4bce0268d9744449f06393edf4bd2dc5562a3c0de9e1e136a927e00197982ff2
MD5 f4cb55eabfd813493771b839e51ad9dd
BLAKE2b-256 eb6a2e2842b329b43f6e9d21f9ec8660392e7b476c710f5495a56bb297d05512

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 187.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for dwave_qbsolv-0.3.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3ec6a7e44682b7ef421f2e759a1b908392607c1cd5d6ddc942e0b958569d1de8
MD5 88b99f7c4333fb30703de1429bcb4c4e
BLAKE2b-256 27f602163e35358b26d97b6a4135edece26f9f40f28dd930364112cb42d9c115

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 71.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.5

File hashes

Hashes for dwave_qbsolv-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d01cd9c831290de269e69813c93ca547aa5a368bde928bf30d2e6c0cf122f0a7
MD5 09d7c3f00b6c8e61d4b7145f0e01e2f7
BLAKE2b-256 a05fc552ebabbbbc1276ce0d93b4e4a22ef2c7547541a507912fa60b71439aeb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 56.0 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.4

File hashes

Hashes for dwave_qbsolv-0.3.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 02e98593b3ce27ce21bd67011d2f874f8176c7a5121db11c54713bf20166f770
MD5 f7edc06e2ba83765013e55fdcb3e4cbc
BLAKE2b-256 eb527a3ce03e5eb132ee860fb002d6c15096471a8dad6ce41ea2503e34fe4ad2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 49.2 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.4

File hashes

Hashes for dwave_qbsolv-0.3.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 db69902e2eb845923fa1d3785279148b6a04790e44f4f233797fe99e8c9187a1
MD5 f1af1ed8fef8d9785f2122058fce59a2
BLAKE2b-256 e19705972cad2bcf99b1868f24f94f32f09f61694e6de8c750c841a7886e2be5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 199.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for dwave_qbsolv-0.3.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 952cd8492634e55496fdab777257fa93f9c76332314b40fd4300e621cf39c348
MD5 dda0917da8ac16bec9bebf4842171a17
BLAKE2b-256 c55aa65f5a267b9b10214c4d0869b5c9705777e7907974e90663899fb4e8526b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 183.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for dwave_qbsolv-0.3.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ceb7081b90f875317f95a632b84440c2d02160f120a02685f043b18875e99e43
MD5 a9d7c36f4444ed43ccf77d9c0facc192
BLAKE2b-256 5837d0b3f3cd161632d1437f253c713377d9447da9159384fd5d7d5735863d6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dwave_qbsolv-0.3.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 69.0 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.5

File hashes

Hashes for dwave_qbsolv-0.3.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bd0f749a01bd5f0e83744c64f049168fb21837e1e580ae13633d8a76de4df55
MD5 95555f2f622414cadcda0c429009d272
BLAKE2b-256 7442cebdfe199e807fea2820073a3c078c0a636eb254ba78d24da148719cb57c

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 Pingdom Monitoring Sentry Error logging StatusPage Status page