Skip to main content

Framework for the Ising model and QUBO.

Project description

OpenJij : Framework for the Ising model and QUBO.

PyPI version shields.io PyPI pyversions PyPI implementation PyPI format PyPI license PyPI download month Downloads

build-test Build Documentation CodeQL Codacy Badge Maintainability codecov

Coverage Graph

Sunburst Grid Icicle
  • python >= 3.7
  • (optional) gcc >= 7.0.0
  • (optional) cmake >= 3.22
  • (optional) Ninja

Change IMPORT

  • OpenJij >= v0.5.0

    import openjij.cxxjij
    
  • OpenJij <= v0.4.9

    import cxxjij
    
  • Documents

  • C++ Docs

install

install via pip

Note: To use GPGPU algorithms, please follow the section install via pip from source codes below. GPGPU algorithms are automatically enabled once CMake finds CUDA frameworks during installation.

# Binary
$ pip install openjij 
# From Source (CUDA)
$ pip install --no-binary=openjij,jij-cimod  openjij

install via pip from source codes

To install OpenJij from source codes, please install CMake first then install OpenJij.

cmake setup

If you want to use setup.py instead of PIP, You will need to install CMake>=3.22.
We are Highly recommended install CMake via PYPI.

$ pip install -U cmake

Make sure the enviroment path for CMake is set correctly.

install OpenJij

$ pip install --no-binary=openjij,jij-cimod openjij

install from github repository

$ git clone git@github.com:OpenJij/OpenJij.git
$ cd openjij
$ python -m pip install -vvv .

For Contributor

Use pre-commit for auto chech before git commit. .pre-commit-config.yaml

# pipx install pre-commit 
# or 
# pip install pre-commit
pre-commit install

Test

Python

$ python -m venv .venv
$ . .venv/bin/activate
$ pip install pip-tools 
$ pip-compile setup.cfg
$ pip-compile dev-requirements.in
$ pip-sync requirements.txt dev-requirements.txt
$ source .venv/bin/activate
$ export CMAKE_BUILD_TYPE=Debug
$ python setup.py --force-cmake install --build-type Debug -G Ninja
$ python setup.py --build-type Debug test 
$ python -m coverage html

C++

$ mkdir build 
$ cmake -DCMAKE_BUILD_TYPE=Debug -S . -B build
$ cmake --build build --parallel
$ cd build
$ ./tests/cxxjij_test
# Alternatively  Use CTest 
$ ctest --extra-verbose --parallel --schedule-random

Needs: CMake > 3.22, C++17

  • Format
$ pip-compile format-requirements.in
$ pip-sync format-requirements.txt
$ python -m isort 
$ python -m black 
  • Aggressive Format
$ python -m isort --force-single-line-imports --verbose ./openjij
$ python -m autoflake --in-place --recursive --remove-all-unused-imports --ignore-init-module-imports --remove-unused-variables ./openjij
$ python -m autopep8 --in-place --aggressive --aggressive  --recursive ./openjij
$ python -m isort ./openjij
$ python -m black ./openjij
  • Lint
$ pip-compile setup.cfg
$ pip-compile dev-requirements.in
$ pip-compile lint-requirements.in
$ pip-sync requirements.txt dev-requirements.txt lint-requirements.txt
$ python -m flake8
$ python -m mypy
$ python -m pyright

Python Documentation

Use Juyter Book for build documentation.
With KaTeX
Need: Graphviz

$ pip-compile setup.cfg
$ pip-compile build-requirements.in
$ pip-compile doc-requirements.in
$ pip-sync requirements.txt build-requirements.txt doc-requirements.txt

Please place your document to docs/tutorialeither markdown or jupyter notebook style.

$ pip install -vvv .
$ jupyter-book build docs --all

How to use

Python example

import openjij as oj
sampler = oj.SASampler()
response = sampler.sample_ising(h={0: -1}, J={(0,1): -1})
response.states
# [[1,1]]

# with indices
response = sampler.sample_ising(h={'a': -1}, J={('a','b'): 1})
[{index: s for index, s in zip(response.indices, state)} for state in response.states]
# [{'b': -1, 'a': 1}]

Community

About us

This product is maintained by Jij Inc.

Please visit our website for more information! https://www.j-ij.com/

Licences

Copyright 2022 Jij Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0  

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openjij-0.6.10.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.

openjij-0.6.10-cp310-cp310-win_amd64.whl (764.8 kB view details)

Uploaded CPython 3.10Windows x86-64

openjij-0.6.10-cp310-cp310-manylinux_2_28_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

openjij-0.6.10-cp310-cp310-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

openjij-0.6.10-cp310-cp310-macosx_12_0_x86_64.whl (597.7 kB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

openjij-0.6.10-cp310-cp310-macosx_11_0_x86_64.whl (603.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

openjij-0.6.10-cp310-cp310-macosx_11_0_arm64.whl (539.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

openjij-0.6.10-cp310-cp310-macosx_10_16_x86_64.whl (603.4 kB view details)

Uploaded CPython 3.10macOS 10.16+ x86-64

openjij-0.6.10-cp39-cp39-win_amd64.whl (764.8 kB view details)

Uploaded CPython 3.9Windows x86-64

openjij-0.6.10-cp39-cp39-manylinux_2_28_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

openjij-0.6.10-cp39-cp39-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

openjij-0.6.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

openjij-0.6.10-cp39-cp39-macosx_12_0_x86_64.whl (597.0 kB view details)

Uploaded CPython 3.9macOS 12.0+ x86-64

openjij-0.6.10-cp39-cp39-macosx_11_0_x86_64.whl (602.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

openjij-0.6.10-cp39-cp39-macosx_11_0_arm64.whl (539.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

openjij-0.6.10-cp39-cp39-macosx_10_16_x86_64.whl (602.7 kB view details)

Uploaded CPython 3.9macOS 10.16+ x86-64

openjij-0.6.10-cp38-cp38-win_amd64.whl (785.1 kB view details)

Uploaded CPython 3.8Windows x86-64

openjij-0.6.10-cp38-cp38-manylinux_2_28_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

openjij-0.6.10-cp38-cp38-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

openjij-0.6.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

openjij-0.6.10-cp38-cp38-macosx_12_0_x86_64.whl (597.0 kB view details)

Uploaded CPython 3.8macOS 12.0+ x86-64

openjij-0.6.10-cp38-cp38-macosx_11_0_x86_64.whl (602.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ x86-64

openjij-0.6.10-cp38-cp38-macosx_11_0_arm64.whl (539.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

openjij-0.6.10-cp38-cp38-macosx_10_16_x86_64.whl (602.6 kB view details)

Uploaded CPython 3.8macOS 10.16+ x86-64

openjij-0.6.10-cp37-cp37m-win_amd64.whl (780.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

openjij-0.6.10-cp37-cp37m-manylinux_2_28_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ x86-64

openjij-0.6.10-cp37-cp37m-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ ARM64

openjij-0.6.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

openjij-0.6.10-cp37-cp37m-macosx_12_0_x86_64.whl (587.2 kB view details)

Uploaded CPython 3.7mmacOS 12.0+ x86-64

openjij-0.6.10-cp37-cp37m-macosx_11_0_x86_64.whl (592.5 kB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

openjij-0.6.10-cp37-cp37m-macosx_10_16_x86_64.whl (592.5 kB view details)

Uploaded CPython 3.7mmacOS 10.16+ x86-64

File details

Details for the file openjij-0.6.10.tar.gz.

File metadata

  • Download URL: openjij-0.6.10.tar.gz
  • Upload date:
  • Size: 87.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for openjij-0.6.10.tar.gz
Algorithm Hash digest
SHA256 db5d2fd7624d40166598f8ef3c96f14bb92b3daab2a1ab3538a705d31ca7a5ff
MD5 e0993a803da16cd1cf8aa1189c8020b4
BLAKE2b-256 a72a5f6190c85fd881e4f408219c5ba50259fbaf1da7bb9e3034ddd2a828a543

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: openjij-0.6.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 764.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for openjij-0.6.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 08c63da82bfaa73fa6a10a7465a58e420ad73d4d8664906f3d3ddd5e8ea875ad
MD5 40261a0c6628f98a5f79345299a6e372
BLAKE2b-256 94581b605e475a25788a9de3c874400abe0cffe3b7bead1b19dc67997c82fbdf

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bdc91ee64c345be869e80450952ebc9fd5436f5d1d7f71c4245492ce19355bcb
MD5 abe21ef8fd8a79c577d50b99115c4b1e
BLAKE2b-256 b3e12eeb6dc98c57345f97c85707b66e11e7b43393c8b195c6e5b041fad18444

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cc88e6d1dc6fb989070284c3cb8e537e3f7a77efb4692dc6cea3de908022ca3
MD5 43313d924f8f86beb29a01a36b05e6d3
BLAKE2b-256 e7344e5600590c3120a9f5ef9498383920cef75288b4b053712cdb3f5997eb47

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 26dc9e7103159e53e46054f5b8fc76c303899eeb6f4f9dade7e359ac1a9214a7
MD5 ab71f2fcedc95531cf985a68f8527328
BLAKE2b-256 a070d64b603f5cccbb39caec199431e07c9da96c9e3bdcec56d6de1a90a1141d

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d914521b3df373990d88d951a24f01010573ba2cc27ff34234d63b90a9a4cd19
MD5 b7cd950750ff44e340dc57e6bc922e03
BLAKE2b-256 24d7b961f2c4b229b80ad930bd7cf93a49847bf80ae2ad85688dd6d45b9100db

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61375e0239b54fcf28963ed34b587d940b33cd8495bbaed547d7a7e3cc9831a4
MD5 8336eb4648415aad577ec2a02e9cd976
BLAKE2b-256 041ba2014d86b66a6a7c64c34c7d24e5ee58e262479b0e23acec24863dd49e37

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp310-cp310-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp310-cp310-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 4acb8473a5d2d914cdc3b0bdd5b9544bcec75920721eee425eee6d2ea992bbbe
MD5 309d474546b60899c0e86f712744f3ad
BLAKE2b-256 a947b0f6c1ab9120e201b57369b7369d99623f17a34fcd0b86a35fe27e3327a0

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: openjij-0.6.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 764.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for openjij-0.6.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5aa0b84821d12cadd1ae07f39bfff905a283c61f5e612e3a04ffb8c5cf70c52c
MD5 b8dede57c817c9a9c6cb58fd5286bd13
BLAKE2b-256 b8a7cc03a9befe0bbb3fca58d8623995085fd8f9f58dd48377ffe329ea3161b5

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 998d3808f3088666eed68581bba8bef668b0d64d13d14c631a7341c9486670de
MD5 9a0f13c97ba1b30c9bff9b1fbd79423c
BLAKE2b-256 fba024823bb47b1cefdae5b3d042a504123f14da7a16583c6283b96c803f393f

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df81a19b6c0c13b4794aef069163c78e506b8dbc674d44fa8a2840d613bb5a91
MD5 95085f5e8a0656e86518142465d801a4
BLAKE2b-256 4900c3c3111e63778b1c84dc6760609b02cba1b768ef10f5a3528b2585feb846

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bdd2f54d241de8e7b4d2a0bd5e8c8a8c827931c1783bc699c1509abdfd3f70e
MD5 d5a54fbe92f09d80ac32eb0d0689e4c8
BLAKE2b-256 6b7a4076b91ffbaf9c5af5794a9f972ea5f868fcd6fb7688d6e96ebbf01df190

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 63c7721c3f853157697c7e51150e2f13bddfd95856ab933748d3592fa7885c61
MD5 882c289b2bffb2d257a67ac6b0d719f1
BLAKE2b-256 8b2a2e90d5df0f57f7abfac655bfaf40018efcaa6ddf6da5c2dd8fd94f46bb9a

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 901dd81a5e2d159f7ee2b5d0b0eb7f3c9a7771accf6e5a4567fe5af4c2b8cf04
MD5 a44adc214136968664544b7b88322c1c
BLAKE2b-256 c6b994424f1f9af64a585781b51c0c7ae38173187d3794b889c087477ac88416

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7831b0fc6190e81c6e2bd76b91b4af7f2e140f58233d3e696729cd33da133d38
MD5 70de5736b9ca8eb225e5fb41cba6b41c
BLAKE2b-256 5b6eaee8b12c0201f406c9528bc17807831ce5e2e74ebc220ebfe89e1d16accb

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp39-cp39-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp39-cp39-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 c1fe42e3e0241088f68daa7af9454055bd6e9a708d0b062ffc69f2fd97febd9d
MD5 29bf8a1489699c938370a77c0f5d2108
BLAKE2b-256 0da400ca61b490f79b8affe35d536f90a3be9d6e58b2d8ad586a453bf8af1fe1

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: openjij-0.6.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 785.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for openjij-0.6.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cf3587b8775a9df65465366749f1fc9ed9945b34264a200fa3f5d1adaf7b5b18
MD5 086b0499b86d8cf18888e01c96657a63
BLAKE2b-256 47c6dd8427110021a71bb54061bbb8a7daba88b347eb13957dafec23d408c46e

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b7e2aec7112ce7ae2c9c219497ac34973661652c013240511ff1afcc510a499
MD5 8fb0aa4fb6b15ab75a4a63492c3507a0
BLAKE2b-256 a54af495e5d0d73a3165f241ce6014db4209aea203e57408c277b2014a3028bc

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5cbc696f24488e7fb3d1733516f2b4c4ecd489927c5fa6428e787cfd96f78f05
MD5 36b1c8d2e88d34bfdc0edf74892f448c
BLAKE2b-256 f8c024b57ee579131d2f11f998726220fea2b782a2533f859789d18e2c239db2

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97a17eef52b98526eb36d3e912f422af942ed649c9d363ef905bee3dc5e9dd15
MD5 cc2ebc1f1f05793d3226f9bdedce7c14
BLAKE2b-256 324536b30d5248c4930f69d1f52fbd3c95e0ecec2079711dae98dac8848c5daf

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp38-cp38-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 cad5b9e731e760fa87458eb118e2fbe5c54a60bda9892ab76b54a47620fe91e5
MD5 7143ebaf538e328e7247b93263f0af31
BLAKE2b-256 19bd3838033e58bb47712cf89a90d3a0ee803fefc9723b6a293c1e59341fae03

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d799a9122618e69c6e875dfb1eb6690f407aee60cc3f6ad5361bb200dc577cef
MD5 6652279f6c9801deed648f526496e4f6
BLAKE2b-256 17658982e300c295472a8576c4326f29558024e3406d625255fa3ab7eb54578e

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b04cd9ec93f5f0ac7ba33c841a028ce91c7fb34c8af8c1d171a39598dc15f06
MD5 55b7023f959eec133e4d9a5067745bd6
BLAKE2b-256 e6c9f8d4da36365237936365c4856cb937cb30d29c5bc5c4025eb93fade473b8

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp38-cp38-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp38-cp38-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 7fcf96a2d24c59f0603b2ef0cde19459f41bb41696e2e4b067d9614b48cd2f04
MD5 6fcf6af61dbead266e002ae3f7550c7e
BLAKE2b-256 f5119cb06a02fe2dd6df76455d2caf9d55add03f4d5fdeb1bcfe84d9eb0735fb

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: openjij-0.6.10-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 780.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for openjij-0.6.10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5b22ee35dfeaeefa746a1f8437ba53d083a0242cfb708f0de12d1c5cbd818512
MD5 b93dd4a2b31884199c08a48c7142359c
BLAKE2b-256 4d793afea0749598060a191ef3937ea66ca6e724a02474531890538d075834a4

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 774607fb227a0543a541e4d45ca1742fdb640f07f79892ec8105ecc6d668da30
MD5 343044c18160c4737ae496d84a861329
BLAKE2b-256 07be60659d058278a801f153cfc69a344603c6dada9493d0d5d110d9ca8d3466

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp37-cp37m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be245f0db889f90247ae48f89cf025388db20e8ce18a9da964bf726052296cbd
MD5 9a6b8ea3756ca69d22812ed25f9caecc
BLAKE2b-256 bb5a0eca073b615fdc09d8b6abec69db9b4ace59513f58d53dfd4cac704baa84

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a58d583fb906f76a37fdd7197d1829157d4f68818c518fe2bb0ea202f39b432c
MD5 48d0fbbdc3752367820d04de71c6ce6f
BLAKE2b-256 743510a582fd369c13b3fae60c7b35a602e344bbd5de3e4fbe6d70c7cd9d303f

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp37-cp37m-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp37-cp37m-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 344e31423677bfe6cfacdd7c47cadb7ce0da366107b9de66fae4d1f0f153e8f6
MD5 f7aafc82b47dd5b05a1e296f1b6a2407
BLAKE2b-256 caac6c343d182a0a1840f8227d4d77937c4c1b4238fb99b584531238ec020df8

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp37-cp37m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 05b6e0543cf4670d524c84a77522116d3d22548945434e7abd4fc040197081a4
MD5 965ed109e251f951a92e28f25e8f7dc1
BLAKE2b-256 f4ee5fcb10017105b5f67275be6c5254f7eccfe65e956e551594212409d019da

See more details on using hashes here.

File details

Details for the file openjij-0.6.10-cp37-cp37m-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for openjij-0.6.10-cp37-cp37m-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 646cd5a15187228fbc0af205ed600438dd320c871989d6bc2ad75be833cd4fc7
MD5 59d614bce09fedb583813304cd784395
BLAKE2b-256 aab5cc14e8e8df3825691230600776e976becbe3cc9debb43e6cbc863f0b5057

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