dimod


Namedimod JSON
Version 0.12.18 PyPI version JSON
download
home_pagehttps://github.com/dwavesystems/dimod
SummaryA shared API for binary quadratic model samplers.
upload_time2024-10-17 20:36:36
maintainerNone
docs_urlNone
authorD-Wave Systems Inc.
requires_python>=3.9
licenseApache 2.0
keywords
VCS
bugtrack_url
requirements oldest-supported-numpy numpy cython reno setuptools
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://img.shields.io/pypi/v/dimod.svg
    :target: https://pypi.org/project/dimod

.. image:: https://img.shields.io/pypi/pyversions/dimod.svg
    :target: https://pypi.python.org/pypi/dimod

.. image:: https://circleci.com/gh/dwavesystems/dimod.svg?style=svg
    :target: https://circleci.com/gh/dwavesystems/dimod

.. image:: https://codecov.io/gh/dwavesystems/dimod/branch/main/graph/badge.svg
    :target: https://codecov.io/gh/dwavesystems/dimod

dimod
=====

.. index-start-marker1

`dimod` is a shared API for samplers. It provides:

* classes for quadratic models---such as the binary quadratic model (BQM) class that
  contains Ising and QUBO models used by samplers such as the D-Wave system---and
  higher-order (non-quadratic) models.
* reference examples of samplers and composed samplers.
* `abstract base classes <https://docs.python.org/3/library/abc.html>`_ for
  constructing new samplers and composed samplers.

.. index-end-marker1

(For explanations of the terminology, see the
`Ocean glossary <https://docs.ocean.dwavesys.com/en/stable/concepts/index.html>`_.)

Example Usage
-------------

.. index-start-marker2

>>> import dimod
...
>>> # Construct a problem
>>> bqm = dimod.BinaryQuadraticModel({0: -1, 1: 1}, {(0, 1): 2}, 0.0, dimod.BINARY)
...
>>> # Use dimod's brute force solver to solve the problem
>>> sampleset = dimod.ExactSolver().sample(bqm)
>>> print(sampleset)
   0  1 energy num_oc.
1  1  0   -1.0       1
0  0  0    0.0       1
3  0  1    1.0       1
2  1  1    2.0       1
['BINARY', 4 rows, 4 samples, 2 variables]

.. index-end-marker2

See the `documentation <https://docs.ocean.dwavesys.com/en/stable/docs_dimod/>`_
for more examples.

Installation
------------

.. installation-start-marker

Installation from `PyPI <https://pypi.org/project/dimod>`_:

.. code-block:: bash

    pip install dimod

.. installation-end-marker

License
-------

Released under the Apache License 2.0. See LICENSE file.

Contributing
------------

Ocean's `contributing guide <https://docs.ocean.dwavesys.com/en/stable/contributing.html>`_
has guidelines for contributing to Ocean packages.

dimod includes some formatting customization in the
`.clang-format <.clang-format>`_ and `setup.cfg <setup.cfg>`_ files.

Release Notes
~~~~~~~~~~~~~

dimod makes use of `reno <https://docs.openstack.org/reno/>`_ to manage its
release notes.

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

.. code-block:: bash

    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 <https://docs.openstack.org/reno/latest/user/usage.html>`_
for details.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/dwavesystems/dimod",
    "name": "dimod",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "D-Wave Systems Inc.",
    "author_email": "tools@dwavesys.com",
    "download_url": "https://files.pythonhosted.org/packages/76/c6/984228bc3413fcaa642581afca1e121c4bf505ce73188b59038345923b8b/dimod-0.12.18.tar.gz",
    "platform": null,
    "description": ".. image:: https://img.shields.io/pypi/v/dimod.svg\n    :target: https://pypi.org/project/dimod\n\n.. image:: https://img.shields.io/pypi/pyversions/dimod.svg\n    :target: https://pypi.python.org/pypi/dimod\n\n.. image:: https://circleci.com/gh/dwavesystems/dimod.svg?style=svg\n    :target: https://circleci.com/gh/dwavesystems/dimod\n\n.. image:: https://codecov.io/gh/dwavesystems/dimod/branch/main/graph/badge.svg\n    :target: https://codecov.io/gh/dwavesystems/dimod\n\ndimod\n=====\n\n.. index-start-marker1\n\n`dimod` is a shared API for samplers. It provides:\n\n* classes for quadratic models---such as the binary quadratic model (BQM) class that\n  contains Ising and QUBO models used by samplers such as the D-Wave system---and\n  higher-order (non-quadratic) models.\n* reference examples of samplers and composed samplers.\n* `abstract base classes <https://docs.python.org/3/library/abc.html>`_ for\n  constructing new samplers and composed samplers.\n\n.. index-end-marker1\n\n(For explanations of the terminology, see the\n`Ocean glossary <https://docs.ocean.dwavesys.com/en/stable/concepts/index.html>`_.)\n\nExample Usage\n-------------\n\n.. index-start-marker2\n\n>>> import dimod\n...\n>>> # Construct a problem\n>>> bqm = dimod.BinaryQuadraticModel({0: -1, 1: 1}, {(0, 1): 2}, 0.0, dimod.BINARY)\n...\n>>> # Use dimod's brute force solver to solve the problem\n>>> sampleset = dimod.ExactSolver().sample(bqm)\n>>> print(sampleset)\n   0  1 energy num_oc.\n1  1  0   -1.0       1\n0  0  0    0.0       1\n3  0  1    1.0       1\n2  1  1    2.0       1\n['BINARY', 4 rows, 4 samples, 2 variables]\n\n.. index-end-marker2\n\nSee the `documentation <https://docs.ocean.dwavesys.com/en/stable/docs_dimod/>`_\nfor more examples.\n\nInstallation\n------------\n\n.. installation-start-marker\n\nInstallation from `PyPI <https://pypi.org/project/dimod>`_:\n\n.. code-block:: bash\n\n    pip install dimod\n\n.. installation-end-marker\n\nLicense\n-------\n\nReleased under the Apache License 2.0. See LICENSE file.\n\nContributing\n------------\n\nOcean's `contributing guide <https://docs.ocean.dwavesys.com/en/stable/contributing.html>`_\nhas guidelines for contributing to Ocean packages.\n\ndimod includes some formatting customization in the\n`.clang-format <.clang-format>`_ and `setup.cfg <setup.cfg>`_ files.\n\nRelease Notes\n~~~~~~~~~~~~~\n\ndimod makes use of `reno <https://docs.openstack.org/reno/>`_ to manage its\nrelease notes.\n\nWhen making a contribution to dimod that will affect users, create a new\nrelease note file by running\n\n.. code-block:: bash\n\n    reno new your-short-descriptor-here\n\nYou can then edit the file created under ``releasenotes/notes/``.\nRemove any sections not relevant to your changes.\nCommit the file along with your changes.\n\nSee reno's `user guide <https://docs.openstack.org/reno/latest/user/usage.html>`_\nfor details.\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "A shared API for binary quadratic model samplers.",
    "version": "0.12.18",
    "project_urls": {
        "Download": "https://github.com/dwavesystems/dimod/releases",
        "Homepage": "https://github.com/dwavesystems/dimod"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9370eba4a6b0eb8fc333081382f9bc543e523808938aed70c7f5d4f210a525b",
                "md5": "f4464e26674defca39b41676cc49fb1b",
                "sha256": "bcd202c9f9e41e1d57de9e1a52d6ac94493d787cf90b9b674846485b8386bf30"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4464e26674defca39b41676cc49fb1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5380667,
            "upload_time": "2024-10-17T20:35:42",
            "upload_time_iso_8601": "2024-10-17T20:35:42.343807Z",
            "url": "https://files.pythonhosted.org/packages/a9/37/0eba4a6b0eb8fc333081382f9bc543e523808938aed70c7f5d4f210a525b/dimod-0.12.18-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfc9c87ebf55fcb2f5dfb589a8537c32d1a8e821f7f9ace0a39986a2822ad8ff",
                "md5": "67a6365fe5895e62d641d5e2fbb4aa7e",
                "sha256": "7d307ae73e97434c1fa08cc683dcb402e046a8168e717b3c815abf217d213f71"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "67a6365fe5895e62d641d5e2fbb4aa7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5172863,
            "upload_time": "2024-10-17T20:35:45",
            "upload_time_iso_8601": "2024-10-17T20:35:45.385037Z",
            "url": "https://files.pythonhosted.org/packages/cf/c9/c87ebf55fcb2f5dfb589a8537c32d1a8e821f7f9ace0a39986a2822ad8ff/dimod-0.12.18-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "688d9bcf52fb559bac8b3ae5e8a558273d765a73f6e10f429eed125dd0bc51c9",
                "md5": "e8d9081302c9e9fe8fc918b51c120b4d",
                "sha256": "ad1212d50f157ac1998e5ff2889a61d20029d45d43380515f6853b2d6b780275"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e8d9081302c9e9fe8fc918b51c120b4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 8821642,
            "upload_time": "2024-10-17T20:35:47",
            "upload_time_iso_8601": "2024-10-17T20:35:47.647686Z",
            "url": "https://files.pythonhosted.org/packages/68/8d/9bcf52fb559bac8b3ae5e8a558273d765a73f6e10f429eed125dd0bc51c9/dimod-0.12.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da06cefb4093f1c6bdabab9c17ddff673264c9c28f5cff4c3060fe563b445eec",
                "md5": "06104efa6a87970c56e0302d32a9944c",
                "sha256": "2188267fdc63ef3644b0f5f0f937468d029cf2f895988416f83801cd45524c7f"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "06104efa6a87970c56e0302d32a9944c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 9000655,
            "upload_time": "2024-10-17T20:35:49",
            "upload_time_iso_8601": "2024-10-17T20:35:49.864605Z",
            "url": "https://files.pythonhosted.org/packages/da/06/cefb4093f1c6bdabab9c17ddff673264c9c28f5cff4c3060fe563b445eec/dimod-0.12.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e621eec167796f73e7a3e8035a2d11662fc146fe8c39f5e314e37097466efb7",
                "md5": "49716536e6d4bd0740a5e38d51982ba8",
                "sha256": "76fa186dd32be7ee9b0adc79f6f2905911b6575b55b5206d184b34140b9c1319"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "49716536e6d4bd0740a5e38d51982ba8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5226694,
            "upload_time": "2024-10-17T20:35:52",
            "upload_time_iso_8601": "2024-10-17T20:35:52.938486Z",
            "url": "https://files.pythonhosted.org/packages/7e/62/1eec167796f73e7a3e8035a2d11662fc146fe8c39f5e314e37097466efb7/dimod-0.12.18-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45fb460167c09d923927ee943439eb8bb1375b28761254276c8790bb25fed4e8",
                "md5": "875c65e1a97407e53cae8a4fbd3c9a04",
                "sha256": "5a4d7de40adbb019ad16562891f0acaf4aae1bdfaf65633fc9b6f0389f7ee31d"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "875c65e1a97407e53cae8a4fbd3c9a04",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5386077,
            "upload_time": "2024-10-17T20:35:54",
            "upload_time_iso_8601": "2024-10-17T20:35:54.364600Z",
            "url": "https://files.pythonhosted.org/packages/45/fb/460167c09d923927ee943439eb8bb1375b28761254276c8790bb25fed4e8/dimod-0.12.18-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "074bfea042fe04b7c3d0f5e1d3bb474d9370017b68efda6aa3ebd27b2b8b8385",
                "md5": "7b905203094c7679b395f39b97d1ad6a",
                "sha256": "0389cdfa9237e39c93f7b6afb04356a8686216eeeab2f3fad584794f40560190"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7b905203094c7679b395f39b97d1ad6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5177620,
            "upload_time": "2024-10-17T20:35:56",
            "upload_time_iso_8601": "2024-10-17T20:35:56.476128Z",
            "url": "https://files.pythonhosted.org/packages/07/4b/fea042fe04b7c3d0f5e1d3bb474d9370017b68efda6aa3ebd27b2b8b8385/dimod-0.12.18-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ded4829a5f2b2b6d4938444cf172fa11fd44f71198d6992e0534f42e0b427d45",
                "md5": "f00da02f4c2c4075a76698283b734840",
                "sha256": "ebb769df8ed581be1b332e8e969c598f9d3f1db1d36a5092f4b26e3db1c3b1b7"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f00da02f4c2c4075a76698283b734840",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 8929769,
            "upload_time": "2024-10-17T20:35:58",
            "upload_time_iso_8601": "2024-10-17T20:35:58.653058Z",
            "url": "https://files.pythonhosted.org/packages/de/d4/829a5f2b2b6d4938444cf172fa11fd44f71198d6992e0534f42e0b427d45/dimod-0.12.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71e1a60e46e7aca77d6fdf2b9c3f7321d71de08d37a7a8ab00c86679917080c2",
                "md5": "a8486d22e8137ae3b8e75b1a2f8e83e8",
                "sha256": "1a2fc0db0b42e1b6335e36ba8197a6966c4a4a6bb391dcbdd0942f3c87338791"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8486d22e8137ae3b8e75b1a2f8e83e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 9113492,
            "upload_time": "2024-10-17T20:36:01",
            "upload_time_iso_8601": "2024-10-17T20:36:01.499106Z",
            "url": "https://files.pythonhosted.org/packages/71/e1/a60e46e7aca77d6fdf2b9c3f7321d71de08d37a7a8ab00c86679917080c2/dimod-0.12.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a110a36117d31c93a392173bbabdf7b4103a373750c24de427cc48994ea75da",
                "md5": "c12dc2c47166b0de7d4755c58a66f149",
                "sha256": "7d26e114e7cde7852284e2ef3dc6e78ac5d282263e537e043d24ab28879d5375"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c12dc2c47166b0de7d4755c58a66f149",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5236595,
            "upload_time": "2024-10-17T20:36:04",
            "upload_time_iso_8601": "2024-10-17T20:36:04.191338Z",
            "url": "https://files.pythonhosted.org/packages/7a/11/0a36117d31c93a392173bbabdf7b4103a373750c24de427cc48994ea75da/dimod-0.12.18-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce1f4e3a6245ca68804185b9bcf7b191912a2f4463d0c92e543720af6856c5f7",
                "md5": "f0315964612e28f9563fd65dce1663cd",
                "sha256": "16820ce6f0e580a2b09a54502be72ce28f94cea7d3c647830ddd1247d0307b9f"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0315964612e28f9563fd65dce1663cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5408686,
            "upload_time": "2024-10-17T20:36:05",
            "upload_time_iso_8601": "2024-10-17T20:36:05.653999Z",
            "url": "https://files.pythonhosted.org/packages/ce/1f/4e3a6245ca68804185b9bcf7b191912a2f4463d0c92e543720af6856c5f7/dimod-0.12.18-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd4096f8ad940b79839f0884c8139a5251e89a1752d4fe0acaa0f0c83d2f745d",
                "md5": "2d0cc603d46fc02e6c585f4ce9905dc5",
                "sha256": "afb7ac80947da05c9f3fa2a62d46cc3c476317d0178f560e8e3f9a0329e10827"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2d0cc603d46fc02e6c585f4ce9905dc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5192678,
            "upload_time": "2024-10-17T20:36:07",
            "upload_time_iso_8601": "2024-10-17T20:36:07.226978Z",
            "url": "https://files.pythonhosted.org/packages/fd/40/96f8ad940b79839f0884c8139a5251e89a1752d4fe0acaa0f0c83d2f745d/dimod-0.12.18-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c024ea16ca71d11e41948c9d5f593050e9ca220f47992d1fdd1d511b3910bc42",
                "md5": "99f1f6ec4bb71e65cdffb653329bf2e6",
                "sha256": "ffdd67fc5cb4b1fd765166eedcc4df8ed05dcfba7e9a93cba1f9e93c045747db"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "99f1f6ec4bb71e65cdffb653329bf2e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 8710280,
            "upload_time": "2024-10-17T20:36:09",
            "upload_time_iso_8601": "2024-10-17T20:36:09.386507Z",
            "url": "https://files.pythonhosted.org/packages/c0/24/ea16ca71d11e41948c9d5f593050e9ca220f47992d1fdd1d511b3910bc42/dimod-0.12.18-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "255dd84d1cc87cb82fa81bdc8bb57266ecb0e78b0f78524a132b0bc886b8c8bc",
                "md5": "2d856d71961b42230e85d8dad5e4a144",
                "sha256": "2d43ac82cf9983a43755aafb6d082e8ea788e04c4826eb7494a04fb126ca0c84"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d856d71961b42230e85d8dad5e4a144",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 8990913,
            "upload_time": "2024-10-17T20:36:11",
            "upload_time_iso_8601": "2024-10-17T20:36:11.455115Z",
            "url": "https://files.pythonhosted.org/packages/25/5d/d84d1cc87cb82fa81bdc8bb57266ecb0e78b0f78524a132b0bc886b8c8bc/dimod-0.12.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abbdfeac4663fe58844ed12c95dcdaf3bf7de1400ab48e751200f80d3368e60b",
                "md5": "ff55535f1b9e1bbc9c3d8542b503f8ba",
                "sha256": "ac25ef07d7196f4658635b8006f35ad0a3854ade089f88059657e19463e285c4"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ff55535f1b9e1bbc9c3d8542b503f8ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5237193,
            "upload_time": "2024-10-17T20:36:13",
            "upload_time_iso_8601": "2024-10-17T20:36:13.460224Z",
            "url": "https://files.pythonhosted.org/packages/ab/bd/feac4663fe58844ed12c95dcdaf3bf7de1400ab48e751200f80d3368e60b/dimod-0.12.18-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b72294233f71065a56831300b3793e7c05122635c8fa52034ee96f8ed81eed4",
                "md5": "e421138c89ccd8b0c1378f623486545f",
                "sha256": "0e7bbb2dbd320b329c54e4e419452d1f893e813eb2dfcd24d2196eaeae318e3a"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e421138c89ccd8b0c1378f623486545f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5384666,
            "upload_time": "2024-10-17T20:36:15",
            "upload_time_iso_8601": "2024-10-17T20:36:15.217591Z",
            "url": "https://files.pythonhosted.org/packages/7b/72/294233f71065a56831300b3793e7c05122635c8fa52034ee96f8ed81eed4/dimod-0.12.18-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a4847fb9c8d99cc913290f19438fc80b641df850cef19fd8ca8e2e49efc3506",
                "md5": "651f13f9708a6f9716b22d209f4501cd",
                "sha256": "6e0404347471f0051cb128502ba63f1bec5d2e8eba098c986ced316f0c86659d"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "651f13f9708a6f9716b22d209f4501cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5170953,
            "upload_time": "2024-10-17T20:36:17",
            "upload_time_iso_8601": "2024-10-17T20:36:17.423709Z",
            "url": "https://files.pythonhosted.org/packages/5a/48/47fb9c8d99cc913290f19438fc80b641df850cef19fd8ca8e2e49efc3506/dimod-0.12.18-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d57c49d680257e2feef7009b8c90dcdabfbe7eb7bfc4c87622f9c86b83ef58f6",
                "md5": "ce833d0c7b38b7833397e89a1b92af10",
                "sha256": "1d8825198f9a6e0f7d18938c812333bb0d7a9f28af3376fdbf250ee0d9d9ad5f"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ce833d0c7b38b7833397e89a1b92af10",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 8690613,
            "upload_time": "2024-10-17T20:36:19",
            "upload_time_iso_8601": "2024-10-17T20:36:19.804802Z",
            "url": "https://files.pythonhosted.org/packages/d5/7c/49d680257e2feef7009b8c90dcdabfbe7eb7bfc4c87622f9c86b83ef58f6/dimod-0.12.18-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b538abf4fa2b687cd98650826489e4a8f5a21229937fb6253a5ff54ac831f80",
                "md5": "0f5ecf60a2ad033df81688b988c11e9b",
                "sha256": "25ca6445aa54c341a93427f64c7bcf04f9d02823b235396190e1e42dc84ea584"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f5ecf60a2ad033df81688b988c11e9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 8967578,
            "upload_time": "2024-10-17T20:36:22",
            "upload_time_iso_8601": "2024-10-17T20:36:22.288459Z",
            "url": "https://files.pythonhosted.org/packages/8b/53/8abf4fa2b687cd98650826489e4a8f5a21229937fb6253a5ff54ac831f80/dimod-0.12.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "502db849de322746bf270668236309228f13d358ff64f73aed4f8a11c1baa325",
                "md5": "6456c9ae8364542eefdf04ba66bbcf94",
                "sha256": "11182d758387241c9aa321d4c771f62a31b4f00a5ba7d13f6f2b90c06ab74b94"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6456c9ae8364542eefdf04ba66bbcf94",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5231516,
            "upload_time": "2024-10-17T20:36:24",
            "upload_time_iso_8601": "2024-10-17T20:36:24.957583Z",
            "url": "https://files.pythonhosted.org/packages/50/2d/b849de322746bf270668236309228f13d358ff64f73aed4f8a11c1baa325/dimod-0.12.18-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69a832840b78cfaad06a0a4534aee3be6bd108be2ac484c8002ab8613a4f9fa5",
                "md5": "31c41a3811479d43eb22ff02c7a03088",
                "sha256": "c085fa8e2e66e2a78e2e0030ab756ecb8adc8ab0121dda530a1b347193dd8ed2"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31c41a3811479d43eb22ff02c7a03088",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5385065,
            "upload_time": "2024-10-17T20:36:26",
            "upload_time_iso_8601": "2024-10-17T20:36:26.400251Z",
            "url": "https://files.pythonhosted.org/packages/69/a8/32840b78cfaad06a0a4534aee3be6bd108be2ac484c8002ab8613a4f9fa5/dimod-0.12.18-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10559e0c9426eee98d206730170c7f280edbf18e50ddb6b5a9940405ec32f0ca",
                "md5": "3afa28b4797dc3c16fc91dc8c54550c1",
                "sha256": "a3517601757c413e98847747737dffeea7ec6b55337eff87e7e194182c76bdee"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3afa28b4797dc3c16fc91dc8c54550c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5177656,
            "upload_time": "2024-10-17T20:36:28",
            "upload_time_iso_8601": "2024-10-17T20:36:28.521476Z",
            "url": "https://files.pythonhosted.org/packages/10/55/9e0c9426eee98d206730170c7f280edbf18e50ddb6b5a9940405ec32f0ca/dimod-0.12.18-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "241ee06c78e97d3f9194ab54001a2af8864ee3681e560b6711b4e84e474e6816",
                "md5": "5d5fa805602fba79ae3f95b1b6cb723c",
                "sha256": "d1f1fa67ef604d3723713b29d32ab7163035baa254c4e3c965e7826cb25598bc"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5d5fa805602fba79ae3f95b1b6cb723c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 8830834,
            "upload_time": "2024-10-17T20:36:30",
            "upload_time_iso_8601": "2024-10-17T20:36:30.058413Z",
            "url": "https://files.pythonhosted.org/packages/24/1e/e06c78e97d3f9194ab54001a2af8864ee3681e560b6711b4e84e474e6816/dimod-0.12.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "152692248b07a8875de46b67692994cdb6742a91299da8f4e305482292c1122c",
                "md5": "365d570a374a91ea47c0f4859b5c794a",
                "sha256": "3aa0ac1c0527d220ac4ff9a7e8268449ce514eb1f3d498b48dd26769377d9147"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "365d570a374a91ea47c0f4859b5c794a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 9005740,
            "upload_time": "2024-10-17T20:36:32",
            "upload_time_iso_8601": "2024-10-17T20:36:32.821546Z",
            "url": "https://files.pythonhosted.org/packages/15/26/92248b07a8875de46b67692994cdb6742a91299da8f4e305482292c1122c/dimod-0.12.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17c6eb52bc04082b1769cdc3fbc4d3a4543e1bf674f79a86630a17e3916647a1",
                "md5": "0fbb09b010e2af3ad22d4e7285e094ef",
                "sha256": "a00eb9afa74d15d66b298778c86c09acc71967b85619059349f83793907d7e20"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0fbb09b010e2af3ad22d4e7285e094ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5230601,
            "upload_time": "2024-10-17T20:36:34",
            "upload_time_iso_8601": "2024-10-17T20:36:34.905948Z",
            "url": "https://files.pythonhosted.org/packages/17/c6/eb52bc04082b1769cdc3fbc4d3a4543e1bf674f79a86630a17e3916647a1/dimod-0.12.18-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76c6984228bc3413fcaa642581afca1e121c4bf505ce73188b59038345923b8b",
                "md5": "4f503f946ef2e608cd465fdd89ef7103",
                "sha256": "1ff58655be3e127d359438e6d2f6564954a066eeafaf4de88135dcd4e02843ca"
            },
            "downloads": -1,
            "filename": "dimod-0.12.18.tar.gz",
            "has_sig": false,
            "md5_digest": "4f503f946ef2e608cd465fdd89ef7103",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 3051622,
            "upload_time": "2024-10-17T20:36:36",
            "upload_time_iso_8601": "2024-10-17T20:36:36.673908Z",
            "url": "https://files.pythonhosted.org/packages/76/c6/984228bc3413fcaa642581afca1e121c4bf505ce73188b59038345923b8b/dimod-0.12.18.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-17 20:36:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dwavesystems",
    "github_project": "dimod",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "requirements": [
        {
            "name": "oldest-supported-numpy",
            "specs": []
        },
        {
            "name": "numpy",
            "specs": [
                [
                    "==",
                    "2.1.0"
                ]
            ]
        },
        {
            "name": "cython",
            "specs": [
                [
                    "==",
                    "3.0.10"
                ]
            ]
        },
        {
            "name": "reno",
            "specs": [
                [
                    "==",
                    "3.3.0"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": [
                [
                    ">=",
                    "46.4.0"
                ]
            ]
        }
    ],
    "lcname": "dimod"
}
        
Elapsed time: 3.13170s