minorminer
minorminer is a heuristic tool for minor embedding: given a minor and target graph, it tries to find a mapping that embeds the minor into the target.
Science Score: 33.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
✓Academic publication links
Links to: arxiv.org -
✓Committers with academic emails
2 of 18 committers (11.1%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.8%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
minorminer is a heuristic tool for minor embedding: given a minor and target graph, it tries to find a mapping that embeds the minor into the target.
Basic Info
- Host: GitHub
- Owner: dwavesystems
- License: apache-2.0
- Language: Python
- Default Branch: main
- Homepage: https://docs.ocean.dwavesys.com/en/stable/docs_minorminer/source/sdk_index.html
- Size: 3.53 MB
Statistics
- Stars: 51
- Watchers: 18
- Forks: 43
- Open Issues: 26
- Releases: 30
Created over 8 years ago
· Last pushed about 1 year ago
Metadata Files
Readme
License
README.rst
.. image:: https://img.shields.io/pypi/v/minorminer.svg
:target: https://pypi.org/project/minorminer
.. image:: https://img.shields.io/pypi/pyversions/minorminer.svg
:target: https://pypi.python.org/pypi/minorminer
.. image:: https://circleci.com/gh/dwavesystems/minorminer.svg?style=svg
:target: https://circleci.com/gh/dwavesystems/minorminer
.. image:: https://img.shields.io/badge/arXiv-1406.2741-b31b1b.svg
:target: https://arxiv.org/abs/1406.2741
.. image:: https://img.shields.io/badge/arXiv-1507.04774-b31b1b.svg
:target: https://arxiv.org/abs/1507.04774
==========
minorminer
==========
.. start_minorminer_about
`minorminer` is a heuristic tool for minor embedding: given a minor and target
graph, it tries to find a mapping that embeds the minor into the target.
.. start_minorminer_about_general_embedding
The primary utility function, ``find_embedding()``, is an implementation of
the heuristic algorithm described in [1]. It accepts various optional parameters
used to tune the algorithm's execution or constrain the given problem.
This implementation performs on par with tuned, non-configurable implementations
while providing users with hooks to easily use the code as a basic building
block in research.
[1] https://arxiv.org/abs/1406.2741
Another function, ``find_clique_embedding()``, can be used to find clique
embeddings for Chimera, Pegasus, and Zephyr graphs in polynomial time. It is an
implementation of the algorithm described in [2]. There are additional utilities
for finding biclique embeddings as well.
[2] https://arxiv.org/abs/1507.04774
.. end_minorminer_about
Python
======
Installation
------------
pip installation is recommended for platforms with precompiled wheels posted to
pypi. Source distributions are provided as well.
.. code-block:: bash
pip install minorminer
To install from this repository, you will need to first fetch the submodules
git submodule init
git submodule update
and then run the `setuptools` script.
.. code-block:: bash
pip install -r requirements.txt
python setup.py install
# optionally, run the tests to check your build
pip install -r tests/requirements.txt
python -m pytest .
Examples
--------
.. start_minorminer_examples_python
.. code-block:: python
from minorminer import find_embedding
# A triangle is a minor of a square.
triangle = [(0, 1), (1, 2), (2, 0)]
square = [(0, 1), (1, 2), (2, 3), (3, 0)]
# Find an assignment of sets of square variables to the triangle variables
embedding = find_embedding(triangle, square, random_seed=10)
print(len(embedding)) # 3, one set for each variable in the triangle
print(embedding)
# We don't know which variables will be assigned where, here are a
# couple possible outputs:
# [[0, 1], [2], [3]]
# [[3], [1, 0], [2]]
.. code-block:: python
# We can insist that variable 0 of the triangle will always be assigned to [2]
embedding = find_embedding(triangle, square, fixed_chains={0: [2]})
print(embedding)
# [[2], [3, 0], [1]]
# [[2], [1], [0, 3]]
# And more, but all of them start with [2]
.. code-block:: python
# If we didn't want to force variable 0 to stay as [2], but we thought that
# was a good start we could provide it as an initialization hint instead.
embedding = find_embedding(triangle, square, initial_chains={0: [2]})
print(embedding)
# [[2], [0, 3], [1]]
# [[0], [3], [1, 2]]
# Output where variable 0 has switched to something else is possible again.
.. code-block:: python
import networkx as nx
# An example on some less trivial graphs
# We will try to embed a fully connected graph with 6 nodes, into a
# random regular graph with degree 3.
clique = nx.complete_graph(6).edges()
target_graph = nx.random_regular_graph(d=3, n=30).edges()
embedding = find_embedding(clique, target_graph)
print(embedding)
# There are many possible outputs for this, sometimes it might even fail
# and return an empty list
A more fleshed out example can be found under `examples/fourcolor.py`
.. code-block:: bash
cd examples
pip install -r requirements.txt
python fourcolor.py
.. end_minorminer_examples_python
C++
===
Installation
------------
The `CMakeLists.txt` in the root of this repo will build the library and
optionally run a series of tests. On Linux, the commands would be something like
this:
.. code-block:: bash
mkdir build; cd build
cmake ..
make
To build the tests, turn the CMake option `MINORMINER_BUILD_TESTS` on. The
command line option for CMake to do this would be `-DMINORMINER_BUILD_TESTS=ON`.
Library Usage
-------------
C++11 programs should be able to use this as a header-only library. If your
project is using CMake, this library can be used fairly simply; if you have
checked out this repo as `externals/minorminer` in your project, you would need
to add the following lines to your `CMakeLists.txt`
.. code-block:: CMake
add_subdirectory(externals/minorminer)
# After your target is defined
target_link_libraries(your_target minorminer pthread)
Examples
--------
A minimal buildable example can be found in this repo under
`examples/example.cpp`.
.. code-block:: bash
cd examples
g++ example.cpp -std=c++11 -o example -pthread
This can also be built using the included `CMakeLists.txt` along with the main
library build by turning the CMake option `MINORMINER_BUILD_EXAMPLES` on. The
command line option for CMake to do this would be
`-DMINORMINER_BUILD_EXAMPLES=ON`.
License
=======
Released under the Apache License 2.0. See ``_ file.
Contributing
============
Ocean's `contributing guide `_
has guidelines for contributing to Ocean packages.
If you're interested in adding or modifying parameters of the ``find_embedding``
primary utility function, please see the ``_ file.
Release Notes
-------------
``minorminer`` makes use of `reno `_
to manage its release notes.
When making a contribution to ``minorminer`` 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 `_
for details.
Owner
- Name: D-Wave Systems Inc.
- Login: dwavesystems
- Kind: organization
- Website: https://ocean.dwavesys.com/
- Repositories: 44
- Profile: https://github.com/dwavesystems
D-Wave's Ocean software and other open-source projects
GitHub Events
Total
- Create event: 3
- Issues event: 4
- Release event: 3
- Watch event: 3
- Issue comment event: 21
- Push event: 11
- Pull request review comment event: 144
- Pull request event: 23
- Pull request review event: 101
- Fork event: 4
Last Year
- Create event: 3
- Issues event: 4
- Release event: 3
- Watch event: 3
- Issue comment event: 21
- Push event: 11
- Pull request review comment event: 144
- Pull request event: 23
- Pull request review event: 101
- Fork event: 4
Committers
Last synced: over 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| Kelly Boothby | b****y@d****m | 190 |
| Bradley Ellert | b****t@d****m | 100 |
| Alexander Condello | a****o@g****m | 40 |
| Joel Pasvolsky | j****y@d****m | 38 |
| Alexander Condello | a****o@d****m | 26 |
| Melody Wong | m****g@d****m | 24 |
| Adam Douglass | a****s@d****m | 17 |
| Heidi Tong | h****g@d****m | 15 |
| Radomir Stevanovic | r****r@d****m | 14 |
| Tim Doyle | t****e@d****m | 6 |
| Stefan Hannie | s****e@d****m | 4 |
| Jose Pinilla | j****a@e****a | 3 |
| Jamie King | j****g@d****m | 3 |
| Alex McCaskey | m****j@o****v | 3 |
| Joel | 3****y | 3 |
| William Bernoudy | w****y@d****m | 2 |
| Aidan Roy | a****y | 1 |
| Stefan Hannie | s****e@g****m | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 48
- Total pull requests: 106
- Average time to close issues: 4 months
- Average time to close pull requests: 2 months
- Total issue authors: 24
- Total pull request authors: 15
- Average comments per issue: 1.54
- Average comments per pull request: 1.24
- Merged pull requests: 84
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 5
- Pull requests: 29
- Average time to close issues: N/A
- Average time to close pull requests: 8 days
- Issue authors: 4
- Pull request authors: 9
- Average comments per issue: 0.0
- Average comments per pull request: 1.14
- Merged pull requests: 20
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- randomir (7)
- boothby (7)
- arcondello (6)
- JoelPasvolsky (3)
- jackraymond (3)
- kevinchern (2)
- Gabriel-in-Toronto (2)
- yurivict (2)
- cpotts-dwave (1)
- hmunozb (1)
- carlos-havier (1)
- amorim-cjs (1)
- joseppinilla (1)
- almosnow (1)
- odidev (1)
Pull Request Authors
- boothby (31)
- arcondello (21)
- JoelPasvolsky (10)
- randomir (9)
- thisac (8)
- jackraymond (6)
- hhtong (4)
- seatim (4)
- epicfarmer (3)
- aidanproy (2)
- Willu12 (2)
- mahdiehmalekian (2)
- AndyZzzZzzZzz (2)
- jberwald (1)
- Gabriel-in-Toronto (1)
Top Labels
Issue Labels
bug (3)
enhancement (2)
question (1)
good first issue (1)
needsdiscussion (1)
Pull Request Labels
enhancement (1)
Packages
- Total packages: 2
-
Total downloads:
- pypi 48,446 last-month
- Total docker downloads: 107
-
Total dependent packages: 7
(may contain duplicates) -
Total dependent repositories: 57
(may contain duplicates) - Total versions: 37
- Total maintainers: 2
pypi.org: minorminer
Heuristic algorithm to find graph minor embeddings.
- Homepage: https://github.com/dwavesystems/minorminer
- Documentation: https://minorminer.readthedocs.io/
- License: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
-
Latest release: 0.2.19
published about 1 year ago
Rankings
Dependent packages count: 1.9%
Dependent repos count: 2.0%
Downloads: 2.0%
Docker downloads count: 4.1%
Average: 4.4%
Forks count: 6.6%
Stargazers count: 9.9%
Maintainers (2)
Last synced:
11 months ago
conda-forge.org: minorminer
- Homepage: https://github.com/dwavesystems/minorminer
- License: Apache-2.0
-
Latest release: 0.2.9
published about 4 years ago
Rankings
Dependent packages count: 15.6%
Forks count: 26.7%
Average: 28.7%
Dependent repos count: 34.0%
Stargazers count: 38.6%
Last synced:
11 months ago
Dependencies
docs/requirements.txt
pypi
- breathe >4.25.0
- cython >=0.28.5
- sphinx >=4.0.0,<5.0.0
- sphinx-rtd-theme *
examples/requirements.txt
pypi
- dwave_networkx *
- future *
requirements.txt
pypi
- Cython ==0.29.24
- dwave-networkx >=0.8.11
- fasteners ==0.15
- homebase ==1.0.1
- networkx ==2.4
- numpy ==1.21.6
- numpy ==1.22.3
- rectangle-packer >=2.0.1
- scipy ==1.7.3
- scipy ==1.8.0
setup.py
pypi
- scipy *
test_requirements.txt
pypi
- parameterized ==0.7.4 test
- pytest >=6.0.0 test
- pytest-subtests * test