Skip to main content

Bindings to Chu-Liu-Edmonds algorithm from TurboParser

Project description

Chu-Liu-Edmonds Algorithm from TurpoParser.

This package wraps the Chu-Liu-Edmonds maximum spanning algorithm from TurboParser for use within Python.

The original package was made by https://github.com/andersjo/dependency_decoding .

Documentation

The package provides a function chu_liu_edmonds, which accepts an N×N score matrix as argument, where N is the sentence length including the artificial root node, which has index 0. The (i,j)-th cell is the score for the edge j→i. In other words, a row gives the scores for the different heads of a dependent.

A np.nan cell value informs the algorithm to skip the edge.

Example usage:

import numpy as np
from ufal.chu_liu_edmonds import chu_liu_edmonds

np.random.seed(42)
score_matrix = np.random.rand(3, 3)
heads, tree_score = chu_liu_edmonds(score_matrix)
print(heads, tree_score)

Install

Binary wheels of the package are provided, just run

pip install ufal.chu_liu_edmonds

Updating the Cython-generated Module

To update the Cython-generated module, run

cython --module-name ufal.chu_liu_edmonds._chu_liu_edmonds chu_liu_edmonds.pyx -o chu_liu_edmonds.cpp

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

ufal.chu_liu_edmonds-1.0.3.tar.gz (153.1 kB view details)

Uploaded Source

Built Distributions

ufal.chu_liu_edmonds-1.0.3-cp312-cp312-win_amd64.whl (292.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

ufal.chu_liu_edmonds-1.0.3-cp312-cp312-win32.whl (234.3 kB view details)

Uploaded CPython 3.12 Windows x86

ufal.chu_liu_edmonds-1.0.3-cp312-cp312-musllinux_1_1_x86_64.whl (660.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp312-cp312-musllinux_1_1_i686.whl (714.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

ufal.chu_liu_edmonds-1.0.3-cp312-cp312-musllinux_1_1_aarch64.whl (643.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (109.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (118.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ufal.chu_liu_edmonds-1.0.3-cp312-cp312-macosx_11_0_arm64.whl (92.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp312-cp312-macosx_10_9_x86_64.whl (99.2 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp311-cp311-win_amd64.whl (290.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

ufal.chu_liu_edmonds-1.0.3-cp311-cp311-win32.whl (233.0 kB view details)

Uploaded CPython 3.11 Windows x86

ufal.chu_liu_edmonds-1.0.3-cp311-cp311-musllinux_1_1_x86_64.whl (661.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp311-cp311-musllinux_1_1_i686.whl (715.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

ufal.chu_liu_edmonds-1.0.3-cp311-cp311-musllinux_1_1_aarch64.whl (645.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (116.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (111.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (121.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ufal.chu_liu_edmonds-1.0.3-cp311-cp311-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl (97.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp310-cp310-win_amd64.whl (290.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

ufal.chu_liu_edmonds-1.0.3-cp310-cp310-win32.whl (233.3 kB view details)

Uploaded CPython 3.10 Windows x86

ufal.chu_liu_edmonds-1.0.3-cp310-cp310-musllinux_1_1_x86_64.whl (661.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp310-cp310-musllinux_1_1_i686.whl (715.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

ufal.chu_liu_edmonds-1.0.3-cp310-cp310-musllinux_1_1_aarch64.whl (645.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (117.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (111.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (121.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ufal.chu_liu_edmonds-1.0.3-cp310-cp310-macosx_11_0_arm64.whl (91.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl (97.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp39-cp39-win_amd64.whl (291.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

ufal.chu_liu_edmonds-1.0.3-cp39-cp39-win32.whl (234.0 kB view details)

Uploaded CPython 3.9 Windows x86

ufal.chu_liu_edmonds-1.0.3-cp39-cp39-musllinux_1_1_x86_64.whl (662.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp39-cp39-musllinux_1_1_i686.whl (716.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

ufal.chu_liu_edmonds-1.0.3-cp39-cp39-musllinux_1_1_aarch64.whl (645.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (117.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (112.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (122.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ufal.chu_liu_edmonds-1.0.3-cp39-cp39-macosx_11_0_arm64.whl (92.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp39-cp39-macosx_10_9_x86_64.whl (98.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp38-cp38-win_amd64.whl (291.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

ufal.chu_liu_edmonds-1.0.3-cp38-cp38-win32.whl (234.0 kB view details)

Uploaded CPython 3.8 Windows x86

ufal.chu_liu_edmonds-1.0.3-cp38-cp38-musllinux_1_1_x86_64.whl (662.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp38-cp38-musllinux_1_1_i686.whl (716.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

ufal.chu_liu_edmonds-1.0.3-cp38-cp38-musllinux_1_1_aarch64.whl (646.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (117.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (112.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (122.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ufal.chu_liu_edmonds-1.0.3-cp38-cp38-macosx_11_0_arm64.whl (92.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp38-cp38-macosx_10_9_x86_64.whl (97.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-win_amd64.whl (290.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-win32.whl (233.4 kB view details)

Uploaded CPython 3.7m Windows x86

ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl (661.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-musllinux_1_1_i686.whl (716.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl (646.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (117.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (112.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (121.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-macosx_10_9_x86_64.whl (98.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-win_amd64.whl (301.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-win32.whl (239.8 kB view details)

Uploaded CPython 3.6m Windows x86

ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-musllinux_1_1_x86_64.whl (658.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-musllinux_1_1_i686.whl (713.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-musllinux_1_1_aarch64.whl (642.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (109.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (119.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-macosx_10_9_x86_64.whl (96.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file ufal.chu_liu_edmonds-1.0.3.tar.gz.

File metadata

  • Download URL: ufal.chu_liu_edmonds-1.0.3.tar.gz
  • Upload date:
  • Size: 153.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.2

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3.tar.gz
Algorithm Hash digest
SHA256 bf7b6fe9c616a053cf81a3ba297476b9493732c678e7c4f3e7029e156f1fccd1
MD5 bebc03cd3213369a67a596d5cb2a2301
BLAKE2b-256 34f24a8e52298118478b01f0fa061fb8c9728537278f45c2bef758e7604ad1c1

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 857ec5586f01388b6989f8e8e742813ece14b9f82017de9d331ba7729664e189
MD5 bc327915353044c25ee08f1f71017d3c
BLAKE2b-256 dbcbd974ee0d51163ebf33ed1738a184e624236f929d1717f393f964e0278980

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ad8821bc4e036323fc0acfa3f0d97cc72cca571fe517242b87e2a9143509dfc6
MD5 8ac61d1facac3788253677c37deebb92
BLAKE2b-256 0a4b5062210f5410cce413b81b10119c45b69938a70c77ec59ed6c7b49f2d6d4

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 681cbbd2d279c84c3f1c5a015ec3bc2fcc06c883656e42936136960a44e92353
MD5 6151f74d7bfd1b1556e51470e50a7ef4
BLAKE2b-256 5c9bac7c4a00dcafb2b07ac3e8b18776ae8dd83f86358ecd32db711b14b832f7

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fe756edad00afc858763ec3c1dd147c77107b81877e23f2d44913f26d5349f76
MD5 4259fa2d9fef0f460086ba7b8d4eb1a9
BLAKE2b-256 43a7b08eac9d56706b074c0e07a98f70149e18da367429078d9c804e713a3aca

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f2c56c1b4cadf67314aca611f3cfed2d7da7eb6d3921184af92bc876f2b50264
MD5 f478a9845fecf863666cfd0ea0a7d93d
BLAKE2b-256 fe389555dd5e2ff66a78052fb264b4815537d82a2879ff6bb4a220f089ae0975

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea4433563ef8da83dd5f618844d82bd64155c5cd5512ed9b79473daebffd5408
MD5 ca58ce3d32a047118112236036225cda
BLAKE2b-256 d9319bb2e47a3c152de074c5dc88605b4f9733fce3bd1a10137c8763c4875bb8

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10228f193ab1a7c01ca03b0c3ead60adb7097eb8c52d677e235bc37bb28e07ea
MD5 296562b75846c9ab2e86b7200f58a79a
BLAKE2b-256 9a04a23a74ce03ba1b0edbd7fde893429f88137cd05e72d84a41bc1edda217a3

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b26b92e68026e37d9daf6ebd408e5fa3477b73252eae5bea968e719ba5699887
MD5 d6281e06cfd23793cb72d830cf5a1f86
BLAKE2b-256 a5e1faa35ece6ca7e9e6f30b5b478f56e4bfd92359ac71dffb002d24bcc2f79e

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf95457802f0373c47fb1e0d358572d5bb0ac7e60179c26c4c56a0c5056eb322
MD5 9ab2dd584fa7e4517257c6f10e7882c5
BLAKE2b-256 18ac85ca56f4df2073aef3f9958003a1e22440c7b9085fd0cc1cd93f5a04e6ae

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dfd38fe17a549681b1f0d90ef8126c8ab50c3277b6f83d3165203865ddf83ef0
MD5 fb815da6e4c566827249c5492a5047d4
BLAKE2b-256 d97c5f6b7b46d9fe16d30df907fed1b1fec7cbee15ac48b97d1b2d84bf212b8d

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6a0f7a1d367f2e543918acfc683efe27ec2467433ce7359df97c5a5a593b39fb
MD5 52ee74b2d872ef11546ee1b219ea6496
BLAKE2b-256 4201f576b7ff1c8e634833a99a259580f7856d2bac8bc2f9568626fbf6611668

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 11964aa1cd51f65db5d86aa38a728f1548ecc5bc46c954569bebb724b396c9cb
MD5 b3a9f8230d56b1f8e35dd3326a7ad57f
BLAKE2b-256 dac8d740a232183f49ff9e5d79262bd76905f95d1eafb6ada3f8f03aaedaba90

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1bdc82922d797d262051628599f5dc1ad62c28c4a0a81644b83a8cf53b5ea000
MD5 355bfbdf7ba9eba4e99fa654cab6457e
BLAKE2b-256 4cb0e02f1c87804543cb0e617d914b6351a56ad411c2cce5c0064354f5273b8c

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 62ece0fa03644ee2d560f2d7faec696c33973a3d105201f5e2e7cf5c548f1bbe
MD5 ba6599c39344ea58a9f5f30a03563b43
BLAKE2b-256 6b9ee49942c535a6d936fad886224ff23db947c83c1222c6bd34a3805f1d1ff9

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d026efa9df52f80b6bb27a77c7a650d8b0456eac0c95cb395e6e6fa92da6d136
MD5 1a3d1e9288b699e56978441ecce0bba5
BLAKE2b-256 29a2ce6744727e74b5d654614a29cb5e87831d4b607cfd42385368234f0e8a7b

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c258d3bb6f3b720c03f8549ad20108d99871002f5c019dea0474427a5278a0c3
MD5 f1bd80b5c40f4276e9bfb62100f07b8c
BLAKE2b-256 8c9f57da1ce1d4299d50926482365726f1f94c95c359dce16a7b06750588d95c

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7204736a7df0d867a1d77aff18d6764f761933146a74f0a5af4079c8ae74f1b4
MD5 def3bd127e12672d3ae2055724ee3822
BLAKE2b-256 ba670acbf294eadd683c6813d12f169cf1f7e13a79f969cce90ad5e08c8a2a99

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b355fc22d0248a5b8da8b16e63296599b4974a9f25d9bc34d6aa9dca9f9f7df8
MD5 83921080c5dc38cd5fed28ace0ea1643
BLAKE2b-256 04b164317b58668211ff187969df3d779358f07cbdab19d5f8dc71b4e302e597

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48c6550af9bb4c66bcee776842f5c5c79ae995e45dbda02c23a8e093002eaa6f
MD5 bb523458d9af779e1af10c545ff1e2bf
BLAKE2b-256 05414d50cc11d9a2dc9d2f9a223a5714cd1a109c9f91155693c2894f2f45cb32

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f5a7f4f26a1624bf47062fc7756b5fcd61bbe1faa9bd6f3c17987b3baa13b38
MD5 832a3cda006e4494a653708034d74bf0
BLAKE2b-256 165f2d4268415cef4a4cc91fc0299b139ca406080f6bde2b6efc3733f084b239

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 68f3d189311dab3b4232c4675c1aa03f17baf965e79ac10ac9a1df74cb483222
MD5 64fcef5012bb823a715bc8ce6e37f292
BLAKE2b-256 fe4216d9d24372941ade145fcdbd6bbf572adb847df30adf085f41dccc58da19

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7f840ce6c7e2ddabb0eb442f31910fb9a7833c3f05798e677d7daa288617f6d1
MD5 3483e2a8026c2dd4983fa7028cced52f
BLAKE2b-256 f1c6681c16e5500c8ff3aed2a720fb7042d9b0355fe6538702d017048a5131fd

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8473180327b1e453a7625a30533a3257008162b53a7769d987e73af47830ce7e
MD5 0bf62ff961a67b85b93563f124397935
BLAKE2b-256 f6cd9ed52d99bc26991efc4690340d2d6e05b119ec4a7dbb36dbc0d7ade7123a

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f262ab9b4856f20cc3738cac7febb73625457ae8b86f16b5234a55ec6d6350b4
MD5 59720ae6c24b1e72e4828184d4ce2e92
BLAKE2b-256 35d100242abe7019c63d8b2ccf6cf416e04ec97245eb2314e2e6abfb06ecea22

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6cab15932787582e84fff33e58e1c0dfbff17b757f2a3b9bd2d94376f918365e
MD5 4c305fec82c2cd418f76ce5692c2fcd9
BLAKE2b-256 4293a8ab2a99b580b8ddd3152d73429f359182c002c597e890054aeb589c8fcb

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ccdcca0199437d4f81c2187a1a234ca339362ee451608e02a9749173eab5ca1
MD5 30098ece9160cf85d356e5c16a3300a7
BLAKE2b-256 339eaed77960a84f7b07ddd2f215639044a56ab18307120b12a0bfb86d9c7d3f

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59a9d2a037170793ab88968a308cda4918750edcd3c58bc78083dd73a28bade6
MD5 a0c2c7308f4e63297db79550d70c3625
BLAKE2b-256 4df24562c4c09353dde7c46295dbee10a50777fa7992b8bf430dda83445b0dff

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f29cbd0302103e63233a09c8f34d1b51f72c57b50b0be9cc581463f8ef45149
MD5 f23585d2a272a9612048c5d48326633c
BLAKE2b-256 63d06576cb0f990bb423080e68d99c580bb21d6330d84a026b533ec964086040

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0ea4f761746ee8564943b6d780b9733846548f4a0f441f3535b73293d564f2f
MD5 d7218582c133f47482b207033dc5c339
BLAKE2b-256 15250e69d98637994ab00f8cf0ac292164c68cdb9b48afc08b92d90ca9ad9430

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4506029ab1ad8d8c2fe934060028c727fa0483507029791c694cbfba15088430
MD5 d26342ab797f5877cd8ba9a72a04c7c1
BLAKE2b-256 201e575a02ff893fc6a3f00c4263a29d39d21f6b1d8b49235e9810ea7ca30cf9

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7648701cb9a6378855539007afea8ec174026350b028cea7be0643c132799c54
MD5 680092253a19111f9c9a168320788281
BLAKE2b-256 f5672f22dc1c1a688065be6f5614c3264061057a5ce4c1b2ecc9f8fa1c3ed8a0

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 53cf94f7e118618e755282d8e1c1098dd6992e75e269da030f6509826a6e1e3c
MD5 e204c38e766f8f72356d491d02c896d8
BLAKE2b-256 855d59c5fd02b3a483b499f155df264f60806e62c2a29dd57472c6aedc0aaddc

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c8c6cdf4575420f64f34ba3938a9dcc080e1aaf01207a34506581b1fa055429b
MD5 b9048bc9ceb7626e9c7304fb25cac83d
BLAKE2b-256 fc8e15db8f43c4707e8d937cc0cf6813e81d7ef37806b93c88485c51e6b2b9f2

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3d016516790a31eb8a06dce453512ae081552143baf0c7aaca760602faef1d3b
MD5 344f737553510a846814c7d871c55cbf
BLAKE2b-256 4ea4bf5faa289eab5c6901e27895ee5e7d6ba380abbfc2e44500362bc9b4e174

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c6fba6c847d539c90ea9f2745d15f05d5a6b423ddafa4fc7cd7d0f21e96a1ef4
MD5 302aaaf5c7e85098e9a7c3566cab4f7c
BLAKE2b-256 2cc70b2311b7d65e17d6cda6d2d81c02e7200e08eea0ec240cf1c4f1ff5c8649

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5919a1e02a1690eb60c18dd4e0e53ab6d64b680a1912597bd574d74356900af0
MD5 2448d5bee0f212edc74b9289cf043b50
BLAKE2b-256 ff2f73fe376eb4ab3a6480d339bb4549b9e4575d4eadbe179bd613f8e7cb892b

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bff469e3def308068d31a2ff3f361c4ffc33169382266d9c35b857ac063bfab1
MD5 0cf61ff591ec4959996e36c628dc9ac1
BLAKE2b-256 8677db32a892066da0957d7f24fe05265705730c666c99ab2a014f4667840f21

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d48214fba8963f09b8676b85f726a0af9aaef90ccf1be28509da4f094586b52f
MD5 5ef729641273fa5d54ce6164bdfa5290
BLAKE2b-256 cedc4be258873c62a9eb79152f4c402d6808b79444c341d922c5874ca6d94cf1

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dd465cccac92dee2e6127604ab76f88f1bcb388c124e9691146fe50868ad181
MD5 f45e7443e05362bcd0c749cfbe6ece2a
BLAKE2b-256 1f2afd631606c6a34bef61b608abc033cb70bb4afaeb5240d75a483cfab3bd9f

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eaf0b00b450170c79fc5f009bc375c37ab39e974f79527107c30d396bc0cd4bd
MD5 986e1880b441221659c55def12a17f8f
BLAKE2b-256 da80a8ae450b0d376674bb6b67c65f88bb216021c30808fa77bd09f55d54a027

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 64385a8188926831425867c23369bb7cf4d410484e4b5d395a5836dd6014de76
MD5 c4df75ce0fa78b861490dee1de780886
BLAKE2b-256 e0e604a6ffbc8830e73b5cac5e30ecb4e4f6182d9de5e6975cb568d76f776cf7

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 46823394ddf050ccef6a14cb6a527fbc4c204bbc33361982950d890229c7257c
MD5 80edfb840893d04dd2cc1dacbcf9a2ca
BLAKE2b-256 0465d63e53c09ef120204f2266a01eff42936ea679af56dcc78f06d6af6d1e27

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 40f56d6e5193da7387d489f451fe2a64e03defc69f236ae00175c6f369fb63ef
MD5 33046003f4c955a4decbff89c7533f03
BLAKE2b-256 be123a9c18bc47672bc375534c4ecf57062864f6267177cd66201ae7fdba6835

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 59b0bd55fdce2e163ce81f6659b4599a207f7d4318c7d146f83ceaafc5bb336d
MD5 125875c939bf94344f9978c8972dd457
BLAKE2b-256 2080878233b4e29b6c0013117b6786f97b375bbafb91e563f7bb7b7d09957a01

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8c4fed5711a6bc80317ba9a046694982bcea8fbdee4db7157700a2d36eb0cc6b
MD5 fbb23077be84c60747e4cc80b0685857
BLAKE2b-256 279c671a170e6fe3e9212a6e83cd7bd40e97f29e58b412f36c43420b0f016a91

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6a8b8c945076d5c45e743c3a6e4dcd8c8838b1ff794c8433f10edd4ac7fc98a
MD5 bf944260ec07ee90e85437b55c8c9ed9
BLAKE2b-256 465a5f9fa38b93e44ffb91bb8d6472128e16b189a25558c6ac27d0c6ab2f4429

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97d62602f93e3c13f3dd24d6e45e2dd3f82b562d1a64a77bee56f1756745ed48
MD5 fac463498a547f2a598b6f8805c66192
BLAKE2b-256 5979071e2b9074fc3530fd3d9cdc4943d77dcb3903a8444ba4be564b3c5ed48b

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00fd5213b3bccc17eb2eca518fa708003bffca1c9b4b7f4906b331668e6a2f72
MD5 372249f42dd29bc51743f7ada584239e
BLAKE2b-256 656986f230702deee807e714dbd0b1dbcd9f0f6fb0b501bd23dfc1a57705736b

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab29690bf0a0ebe64e7aba777446c9add7e65d3991c5631ca1dc9a008a82434a
MD5 aadeec9ed30bfbadd1462628b1ba98a0
BLAKE2b-256 0c4c3074f943fa2f6e807f89d8262566b42508989d7901db6878a788eca7c94a

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9346f24290bc11fe20264ce66a440f9939563a6aa1ae47fc4126c07043cdf44
MD5 c2f8cf4e16e2adaa85565b4eef953348
BLAKE2b-256 70691873be6064810530fd57a4890a2950f91babd836c0155bf83fb5b974c15b

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5b68517d7b4ec657811d162ebd5a56e24db52e8eeef4799cf8cc83712e7342b9
MD5 98fe96a3f817604d1c0528173e581a27
BLAKE2b-256 e17b163ec3da9fa12b463f5d2d0f7dcffc10fe656aafae1fb827b107cf9671dc

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 68cc1cfe4d194080c83183362f9e22660dbe81b0193e1003734b8980f2685842
MD5 3fb2366c1dc3e0090c0403d116f25b2d
BLAKE2b-256 d1985731f5bae3696acb260a8726a9ccd3fbbb8bb6e4e46667782a0b3262a3c5

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 25829a13e6ba39e12885e86d7c47867656b2ce8d26a87a2a646f69a55d51e582
MD5 56336fd4c9ea70700d7a5f4458cd6f3c
BLAKE2b-256 cc4a778590e1e99f62aff46daeb70ed1202185dca34f418d137a7247e2424263

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 46dc01e85293b0a5ce3b5ef0136a18fc04c34b72a0659df7e8a6a0f35ac2ce56
MD5 b0adf56ef05bd53fc0f2bf471526bf44
BLAKE2b-256 0ff56fc248ddfcac6e8f7632f9a0ae222b395c486cfa3d72af30b5368b9d1b2d

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 447ee3239a4fb26ab9f9c3602d69da9668fef32b62e70d94f6bf675e34551a79
MD5 1f7ad5b505e97cc2b1f1c9942ad47b29
BLAKE2b-256 05d02ced727faf676588c7ab49e994bcdf05fef84cd72812cd160082df3c87c5

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16b092fd1640611705a46bc03706d520c1dc36cb0ae7c7665b7a5fcc76726945
MD5 0df0d799ae39f226397b53d79fe1e744
BLAKE2b-256 9e4e64115c5170b42171da0dfbff228da1b3290cedf66a5ed0bc81cfec5785fa

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 432c13981dd05d5b1417c6e9a9cf8ad49ba6366e468dc9353b570e75217b7804
MD5 19d9a4020b14f6f8b8666c46dbd8b559
BLAKE2b-256 3e687e1eb7259253c196845158386c1f1109dd260296b9f72a9bdc9e71cd9279

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e67bede44dea794229b2c4c31e8eb8d157c04e129a41142b1251bff684c5ef9c
MD5 ae5522e4964fdf13a799a118e0e2a8b2
BLAKE2b-256 1497ecbaea530b9085b1b5b48beeac0260fb925953d2fe6eb7fd4f3867c8c9d3

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e486b7b37c455ea7bd3a187d9b8751e08152da3012b1375f97b0eee16bdbecce
MD5 a42a5bfb6ffa552c16b1bf9046257a7e
BLAKE2b-256 5764258aa7d2ff849a0eecf7f6818599c61ad4a68284825931c270e4d8149d78

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5c04113c8cfb0d7ca4cfdea6a12375f4b4ec6459cdd4f960dc8761cda3cd7316
MD5 682b064a1e6605d9c5c701a36e79aa7a
BLAKE2b-256 69182997d6c31b26bdb01288440330d4cc7d0e4781d3b99f822e33cb86ab757c

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7ae48199d9477a2f8d6cb69df7d9ccdcc2d8a62057f3dcc3db619e9989dbe961
MD5 c5cb92dac14ab202eaf9f9614314f244
BLAKE2b-256 b581ea8359dee7bd21a854c9b4feb8a23b7b562648a42dfa5c433f21e2ad5316

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9afe2a30b7ffffaaf6fefcedd145207e69fc3eae0d5962796d8735549da8fef4
MD5 daa110ac30da8378c0749511632313dd
BLAKE2b-256 4be6d7eb992636fd7a13d327da5b3489f7b9ee0dae5721d364ed47e416527067

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 47b0dc42d2755d586fb225a470efb35fdac20531ed8665530601fad620244816
MD5 9abc894a04f5f666b05541a08400b1b9
BLAKE2b-256 cb1d3c8d91088f9eecb5b5ebd12843f0658b5d63fd4f9930ea1e31172fb6bc70

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6af31770527f6ee3ab73d141b50c8139ef569cd0c5466c314a61cabdb745d34e
MD5 40f26a60e47ee9fa190dbce777964c27
BLAKE2b-256 f021eba6a7e468427f58bb8fc76c79500b4446b36b791740c95a78a186c1b2ff

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f420e4c0d2b82b2b755eec02d0634a8bf0790e0fde9c6387022b0b93bf5e7e2d
MD5 776aef207ff37c1384e6b4c89dea9933
BLAKE2b-256 a3c5ce32829d61825edd19c8fc5809dc45321748ae7e754353982c9d5df84c31

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d00f0d122f8ccc1ca5403965911d3b7183b42c25398cedc4922262a15e5afb9
MD5 d70642ef1e43311be6cccedac1614a33
BLAKE2b-256 dd9ef3cbe2ae7217daac728ef2db40e531a9f78c67a90f58d639c8e3b70cf1fb

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ff36d10420a3c7adf46f6d6e37981e140546845e94b551c05708432f6629aa1
MD5 3a5c975bc39ac89c1d61622f911dbe8f
BLAKE2b-256 406cf624fa7de8c5f5261d5e61785a241d9e864e3123e4409154ec9dc73b9e41

See more details on using hashes here.

Provenance

File details

Details for the file ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ufal.chu_liu_edmonds-1.0.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 756df3e12b9051f7f8aaa5860174546e011f09ed43ca0a570314124f3be0bff6
MD5 b1eef2b5b11b8489bf7027d402aa6c01
BLAKE2b-256 492ac7fc1d689a994972936c4a3d540572739c0b2fb64e8c45e59de9e8be2d1e

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page