Skip to main content

Enables the formulation of nonlinear models for industrial optimization problems.

Project description

https://img.shields.io/pypi/v/dwave-optimization.svg https://img.shields.io/pypi/pyversions/dwave-optimization.svg https://circleci.com/gh/dwavesystems/dwave-optimization.svg?style=svg

dwave-optimization

dwave-optimization enables the formulation of nonlinear models for industrial optimization problems. The package includes:

  • A class for nonlinear models used by the Leap service’s quantum-classical hybrid nonlinear-program solver.

  • Model generators for common optimization problems.

Example Usage

The flow-shop scheduling problem is a variant of the renowned job-shop scheduling optimization problem. Given n jobs to schedule on m machines, with specified processing times for each job per machine, minimize the makespan (the total length of the schedule for processing all the jobs). For every job, the i-th operation is executed on the i-th machine. No machine can perform more than one operation simultaneously.

This small example builds a model for optimizing the schedule for processing two jobs on three machines.

from dwave.optimization.generators import flow_shop_scheduling

processing_times = [[10, 5, 7], [20, 10, 15]]
model = flow_shop_scheduling(processing_times=processing_times)

For explanations of the terminology, see the Ocean glossary.

See the documentation for more examples.

Installation

Installation from PyPI:

pip install dwave-optimization

During package development, it is often convenient to use an editable install. See meson-python’s editable installs for more details.

pip install -r requirements.txt
pip install --no-build-isolation --config-settings=editable-verbose=true --editable .

Testing

All code should be thoroughly tested and all pull requests should include tests.

To run the Python tests, first install the package using an editable install as described above. The tests can then be run with unittest.

python -m unittest

To run the C++ tests, first install the project dependencies, then setup a meson build directory. You must configure the build as a debug build for the tests to run.

pip install -r requirements.txt
meson setup build -Dbuildtype=debug

You can then run the tests using meson’s test framework.

meson test -Cbuild

License

Released under the Apache License 2.0. See LICENSE file.

Contributing

Ocean’s contributing guide has guidelines for contributing to Ocean packages.

dwave-optimization includes some formatting customization in the .clang-format and setup.cfg files.

Release Notes

dwave-optimization makes use of reno to manage its release notes.

When making a contribution to dwave-optimization that will affect users, create a new release note file by running

reno new your-short-descriptor-here

You can then edit the file created under releasenotes/notes/. Remove any sections not relevant to your changes. Commit the file along with your changes.

See reno’s user guide for details.

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_optimization-0.6.4.tar.gz (316.6 kB view details)

Uploaded Source

Built Distributions

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

dwave_optimization-0.6.4-cp314-cp314t-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

dwave_optimization-0.6.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

dwave_optimization-0.6.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

dwave_optimization-0.6.4-cp314-cp314t-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dwave_optimization-0.6.4-cp314-cp314t-macosx_10_13_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

dwave_optimization-0.6.4-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

dwave_optimization-0.6.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

dwave_optimization-0.6.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

dwave_optimization-0.6.4-cp314-cp314-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dwave_optimization-0.6.4-cp314-cp314-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

dwave_optimization-0.6.4-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

dwave_optimization-0.6.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

dwave_optimization-0.6.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

dwave_optimization-0.6.4-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dwave_optimization-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

dwave_optimization-0.6.4-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

dwave_optimization-0.6.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

dwave_optimization-0.6.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

dwave_optimization-0.6.4-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dwave_optimization-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

dwave_optimization-0.6.4-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

dwave_optimization-0.6.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

dwave_optimization-0.6.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

dwave_optimization-0.6.4-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dwave_optimization-0.6.4-cp311-cp311-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

dwave_optimization-0.6.4-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

dwave_optimization-0.6.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

dwave_optimization-0.6.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

dwave_optimization-0.6.4-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dwave_optimization-0.6.4-cp310-cp310-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

dwave_optimization-0.6.4-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86-64

dwave_optimization-0.6.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

dwave_optimization-0.6.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

dwave_optimization-0.6.4-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

dwave_optimization-0.6.4-cp39-cp39-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

Details for the file dwave_optimization-0.6.4.tar.gz.

File metadata

  • Download URL: dwave_optimization-0.6.4.tar.gz
  • Upload date:
  • Size: 316.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.18

File hashes

Hashes for dwave_optimization-0.6.4.tar.gz
Algorithm Hash digest
SHA256 53befca343f4aeb9e9efc87788d5e6a7c97353336052c43880f0f2514f4d1719
MD5 6d094146216270a9a356ca70fefa8af3
BLAKE2b-256 cbf01431650313186110fbaab6979128eb52365ca61451c73e5fa8582e899ba5

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 17b259f37dff03a8870fe75796299c856512affe46380450eb86986341469291
MD5 3b3d0b3eb55f21b1dca2b8315d31b969
BLAKE2b-256 b1a813c6aa55d4dc97c8b4bde02829b89f49ed52564361b97c09a101690fb59b

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34bfbc5cf21a1507efcbcf7007712dae888a8f3c383d02662aeeae1ed40b6692
MD5 afe0089b77160243448d678570cdbec7
BLAKE2b-256 775a7c8b516f32bb903aebe00527e336935b226a307c3315e2e5f51c38f84a87

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 716f38e7c33241918704c91c7ceae8861cbfaeb2d064bc7c07f5e57810c8e91b
MD5 cb6efbd20e271bda8b4c6bb11d051db4
BLAKE2b-256 dc3dd5dd7da9398850c44ece097beadbc6edf8d75f33e54c235c34e2b806d371

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6eedc7ad9d01d187a7e1579572abed532945d5054a715b54dc824ab4d1387e4
MD5 242ad862aa01b7eed286eed3b42f2e47
BLAKE2b-256 88aad3f65acb6e15c35df3e0c46ddde022d1e29ddc57a977c36736c550673d17

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6419e5f7e56ad69688f5ff40ad8de7e2c86c99d592025d924f8f7b1cdb852208
MD5 f433b1812a033f15303e8949aa178439
BLAKE2b-256 583a896f0b3ac465afb19716303db5d7ba7eba45446da18eaffd5a89203996b6

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 71c466dc67d33bef1b50ebbafb1988ecc871ef96b09d7f084b8e53d8b71fc13d
MD5 bb368cbaec1057a93a48beb46722929e
BLAKE2b-256 4c598a90673e17aa0eee7a148b2117c7e4f6c2953fadfc30c54e3a14c3574ff4

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d57119fa9c705efad1b9332992dee33467d51ee059d2a81ee64500691226fafa
MD5 a40d6cd3734370b2deaf8c3eb21c2ff8
BLAKE2b-256 f88a4736cb506874473d7d6ab27d4a5a5a04752d608920be0ff27454499a0ab8

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 728890798d9378c0412cc41beee3884c143f84d322e4fd537580a3ba86a5897a
MD5 80c23ac06323bdbb2d87a14fe104477c
BLAKE2b-256 40c7c495e54a63bc627262b346488c5e01e52f8231bfb326c9123d53b77b6654

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc20d1f119dcaa444ffdd6f7af8c5e95c63951ee2109b1363ce6265d3aa0df62
MD5 8bd94a74c826067a779c1bf08440694a
BLAKE2b-256 498fdcec8ba40feb3ed0be4864e5b59a859f62aa8f25547be0ff582876abd2d1

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1abebc1c6df188f7e1bb860831d904a958bfcfc002ebd7b62dd877e69e543123
MD5 e722a007466eaac577a3a7ce55bc2ffe
BLAKE2b-256 b0aeec198e3a2f02a8e86588fa3c13d9aa59289b6500591a63668cdddc860e73

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9e902a23278446a942cd46f7d0a858eb5bc978216244a5da28bfd4e9b14d417f
MD5 5615bb0569a2cacd628e11c38cbd4185
BLAKE2b-256 4b967bcf2d33ec61e9533bcda463d4ccfc955711ecf5827026c62dd41ca163b4

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25d9e69d74ea69937e604c396385f193458554f5a109dc4cf9294a595c408ace
MD5 7da7a25b0b8be9df5250480150bc27b4
BLAKE2b-256 40f57706acae286a99c0a4f05a8a72af7d6f7b75923120a97c81c8a541f76b3c

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c543f4787d4fb075b2d767b21ec5ee5d4b3ca0c4bd4fd8fc1c1a8faa3ba8153a
MD5 21badf184cb96182a748032e970bc32f
BLAKE2b-256 1d1d258d86939f0320c88d27b0b06b3d3e0decdba5d0d9d0e8328e5f8a0d12e5

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f0344ae8be30df377adb13bc3eb113f7f189df0f82cb1ec15f0cfd9a9bf6449
MD5 5dc47e7aa81cefca837e4e4b0d105277
BLAKE2b-256 3b387d97587675573c2473ea85b5fe43becae23760f051044f0cc283bdd9c11d

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d5517b7390b6b82d0bf5539fa929cb7e784fa4e51de443a4f501bf1cf6e4ff07
MD5 e47126247593dcbd7ba5ddf5452befcd
BLAKE2b-256 bb3800b41e97e2b182a266e4e0e07d68ee18f9c8c19d92d97a190720f77d11d2

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 975a91e8179e90f69cf9177b61e4ad9ae3ede6bd13d9e28cefb4a4ce78fa7a63
MD5 602378b9d32030cf5ab2f2514b77a887
BLAKE2b-256 9433a6df5c604fb52e6aa9a0162b3213aaf2b863dd9d523bbd8e654f1b338a6e

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8085656d647ab9b24050bce3d8bd2ae30ef9d86f7583cc5b69f35ac5ea3e87d5
MD5 469594fa2e4315a92587fea52ef6f46c
BLAKE2b-256 a51d3d973cef96f5f22c487bd93d3e6309d7bd99ea613c1b00658f03a8fd72d0

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65bb26f0c5a41fee97b2f0a45ae5d9a1c31590ccfaa9454c7f1df7dd10cb0679
MD5 1aef7c9298c911831102a913d031efbf
BLAKE2b-256 0a26a3c497e98165e483bcf94245a06274e798cebca68b18dddcaa039d34c955

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7855654b78c02b456f643e78a0b0b9a0db93675ee3e220c8cec6532776efe639
MD5 94396907e9f312f625332f1c3750621c
BLAKE2b-256 40c8bbfe9d56da38161e2c5df298c9e0381490515274ab1cc2413b767674223f

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c96e33e5bb7bac8f58d78400124ec06b889cf54ccd0b7bd6c562db8578310815
MD5 d1b3ffed089044cad335a0eeec605e03
BLAKE2b-256 448340a1dcd92b4b37734632e3363b074b5a5a205e76f2a0dfaec37fac5b649d

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1e529638ed7025ce563d101d5275e6ab7586cb08968dfc7714dfc749c67f5651
MD5 ee5cd769a018955266c4442055128154
BLAKE2b-256 8442a9387b7243a9f88c59fd1625f0f7157ea4c9da493034521382bb29b32a66

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25ea1b7b3168ea070e0cb8e96bf5925f4d7f6595cd71fd2e964aec5bc02a1426
MD5 99f723df38d73d04cf70db561ab47c48
BLAKE2b-256 47bf3d7e17c0183842457c13fbd0474edb7a3ef85ab81fe475b7dbfa53215863

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d665eedbcaeb12563940c011ca8ff6d99dc197b707f5c15e805fb2ed4bb21f44
MD5 254f07b67047aafcf6d9e320dc36df8a
BLAKE2b-256 b86457abe1783327994d13f6737a8fe5edeab2809d37ab258e1ac901e1c172ce

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71272df0eb67a36e08bc1c1327cdc770f30401a509d4040778141886a02e6465
MD5 495bf5329ebf9ea60ebc2baa1b4a34ae
BLAKE2b-256 03fa3b6c5636de6ad4215fe4499c9a394d0e178627f8ab604ff90aa5ae2e7fe8

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dd215b7eb3d338e9473f672fdd50aa001b97ded2e3d9dec5bbea64e0cd8290c1
MD5 1dba98f1c1e77a46eed4e5bd50558318
BLAKE2b-256 54336a008ffca48fed73c8936a36bf697ee101438f3da31eb0733c88804d6455

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 14413aa52f2266745301cc27aa52745372e0fedad7887b6a0b7d0d7b050f2ed0
MD5 30c1e4717b563187e1376665c1d8a793
BLAKE2b-256 133cb557105397e21485fe6b2985ed4790a64d363667c13c150a4db5b5a0c590

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea1ecf13828f461e480c3c0567319f8ca7f798c8ce2ce35fd8a5543c5655b467
MD5 714db39a7730c541341ed91486ed7c34
BLAKE2b-256 d8c86a50478fe85e21f67120eeb90cca1b5eebd6808a18cd189a9205e924ff04

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d088ef942bb7299166fd6f05b03a6cc7d844643ee2e46ea5d17897461d79d789
MD5 803e67affeb6d56834f0838ea2663308
BLAKE2b-256 34acba99076753fd4abe38f24945c3819726ed19b67189972c59b15896a10611

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 298fe08e68a5d7079dded6ba25a2149b0a54f8e77c98c6302efe044beb88cb19
MD5 d0305c299d99ba87ddfea752b9ff5248
BLAKE2b-256 f939cfc243794723574309ebc1c97c632861f40816c6c9861266cf6a22aff4c8

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5bfec72ebb67cf02677e4e50be81a5080804949422245659362c83c244e8adc7
MD5 880cdf39a5e98bce50156536f301d41f
BLAKE2b-256 bcc71a0c9b710938227e0328fe6b1954b8ee707f15671f7f45594b4309d53fa7

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 649d45574ecbb6c35e22042e7cfea3c0651433d174df117cfbcf179454d802a9
MD5 995ad3172fb251ca14ae927ccb08ad53
BLAKE2b-256 9538c5df0ff360e8ca27f4802454639c16d2256ca7bb6b048f084c9aa3876bcd

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1988f8f0df695404864cf44069d15d7b9fd0ad538f896f87f5a4817d0bb927e
MD5 0f77f043982b329f6400500d54af293d
BLAKE2b-256 b1f7d49f28279a2618bbfa8e1b5887aa2dd2238638ab9bdf24f7a334806a5411

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f21911269184a8e4c3cd1dec4dfb7a065d5fb99d39d34af451b77287b7b0dd01
MD5 325d8b3b7592a5951357da730f1aa798
BLAKE2b-256 a804386553fd4d78087ff140c3a176cacef960bb39974664b951a79a355204c3

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03e37a73895740fdc50ea4ffb6232a3bdffcf685f02b02d65ab6606374ce323a
MD5 8437aa9a0282fda0e6cf2d32ae01c8f6
BLAKE2b-256 a85a7a2cc3ffd7db00b445d306154af609ca9b9caa6e3483131de8fc6a0aba9f

See more details on using hashes here.

File details

Details for the file dwave_optimization-0.6.4-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dwave_optimization-0.6.4-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fa436f5e86854554f192bcc6cbae8a85318b2af8a4470bdded13e50aab760438
MD5 fb3fd479b36756815486efbf8556fa2d
BLAKE2b-256 caa834bf8af949dcf2998e5836b1c1ddb6981ed4220a0804086d35b30e6bbf14

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