Skip to main content

Find fast approximate solutions for the subsetsum problem.

Project description

Approximate Subset Sum

Find fast approximate solutions for the subset sum problem.

Installation

pip install approx_subsetsum

Usage

Given an integer numpy array samples, this function tries to find a subset of samples, that has a sum close to a given capacity.

import numpy as np
from approx_subsetsum import subsetsum

samples = np.array([1, 2, 3, 4, 5])
capacity = 7
indices = subsetsum(samples, capacity, timeout=10.0)
solution = samples[indices]
if np.sum(solution) == capacity:
    print('found solution')
else:
    print('solution is off by', abs(np.sum(solution) - capacity))

Performance

The algorithm is not well optimized, but at least implemented in C++.

For the following measurements, a script similar to the following code snippet was executed:

import numpy as np
from approx_subsetsum import subsetsum

def bench(n_samples, capacity):
    samples = np.random.randint(1, 1000000, n_samples)
    subsetsum(samples, capacity, timeout=10.0)

The plot shows the runtime depending on the number of samples and the capacity. As you can see the algorithm is not optimized for large capacities, but scales well with the number of samples. Plot visualizing the runtime Note: The algorithm timed out after 10 seconds.

The following table shows an overview of the runtimes (of course, this depends on the hardware).

#samples capacity runtime
1000 10000 0.000 secs
10000 10000 0.001 secs
100000 10000 0.006 secs
1000000 10000 0.061 secs
1000 100000 0.004 secs
10000 100000 0.057 secs
100000 100000 0.569 secs
1000000 100000 5.887 secs
1000 1000000 0.623 secs
10000 1000000 6.093 secs
100000 1000000 >60 secs
1000000 1000000 >60 secs

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

approx_subsetsum-0.2.1-cp313-cp313-win_amd64.whl (71.2 kB view details)

Uploaded CPython 3.13Windows x86-64

approx_subsetsum-0.2.1-cp313-cp313-win32.whl (65.9 kB view details)

Uploaded CPython 3.13Windows x86

approx_subsetsum-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

approx_subsetsum-0.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (89.4 kB view details)

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

approx_subsetsum-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (71.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

approx_subsetsum-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl (74.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

approx_subsetsum-0.2.1-cp312-cp312-win_amd64.whl (71.2 kB view details)

Uploaded CPython 3.12Windows x86-64

approx_subsetsum-0.2.1-cp312-cp312-win32.whl (65.9 kB view details)

Uploaded CPython 3.12Windows x86

approx_subsetsum-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

approx_subsetsum-0.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (89.4 kB view details)

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

approx_subsetsum-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (71.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

approx_subsetsum-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl (74.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

approx_subsetsum-0.2.1-cp311-cp311-win_amd64.whl (70.7 kB view details)

Uploaded CPython 3.11Windows x86-64

approx_subsetsum-0.2.1-cp311-cp311-win32.whl (65.8 kB view details)

Uploaded CPython 3.11Windows x86

approx_subsetsum-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

approx_subsetsum-0.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (88.4 kB view details)

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

approx_subsetsum-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (72.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

approx_subsetsum-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl (75.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

approx_subsetsum-0.2.1-cp310-cp310-win_amd64.whl (69.8 kB view details)

Uploaded CPython 3.10Windows x86-64

approx_subsetsum-0.2.1-cp310-cp310-win32.whl (64.4 kB view details)

Uploaded CPython 3.10Windows x86

approx_subsetsum-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

approx_subsetsum-0.2.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (87.3 kB view details)

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

approx_subsetsum-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (71.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

approx_subsetsum-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl (74.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file approx_subsetsum-0.2.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c283b7b866510ab2e16be45e15d2c4fc403589d22de8f1381071a2ccd8bd1491
MD5 ba31fbb8401df1af3b5c53ae6643ae09
BLAKE2b-256 b962367247571f37440d392832d470021e69939ee6da94f2c69785f19c924302

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp313-cp313-win_amd64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5666659c65e0a998c607010388b7d7ccc867379481c3eb9192db276d1ee47f09
MD5 551a180f73290d81fc94cb14bc084e76
BLAKE2b-256 b966668a81022849d651b543d2980e27031ef41281e32d38e28125eebbf1fcb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp313-cp313-win32.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af9a9804002c13ccabf91401841515f9672dfd62e19172adf90ba7e8e3841d1f
MD5 d5bca8a9429e5358588103a1b2ce8603
BLAKE2b-256 a0333a56c384a492c85280e9a423239d9b4e314e05c67b814bce2c2e24b00ef0

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a036f1f249b140eaae5872f6848ca3593aefc7874d3f73bfe13bce26a9e607d
MD5 8326980ecdf856f86b2f7d32fb5a39f6
BLAKE2b-256 d51374909f40dc04e6c819c29f82f476c911e6ec21e6d379458c18a6d2fbf6e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aef42653ff59d655cc5023bd0e2def35b700f9a16274cdf9a66d0be621f09586
MD5 dc74a169e5c4c42cf03b5fcc45763d6a
BLAKE2b-256 6e6a286330d46909b359598dc0c89f77e5ecf0ed75356d1afbb76ab37d6f611c

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cbed54a242be04125a317e8039a421bb398078bb8ef44ab0d38fd7c3b3b72ea1
MD5 e646e40f07c84c89dcdcfc551f57fca3
BLAKE2b-256 033027fc8d4a667c79caa5be40762adc5b23024f829a91ddde0ea7898c2de4cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4cd3672e8f24adf07dfe3493ac0f02e5c695f6a494c8e7c31fc8e7f97596e206
MD5 951eb54c34e9bdfda9e39a06a90f2b77
BLAKE2b-256 70e02402a3fafa0a3d417ef11132460a4cd2f122e1f4185aceec0f8b0ef1c7c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp312-cp312-win_amd64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c3aba0a3991c412193eb6ef96c60984a0a0cdec3c7c63107a917f10b759f4f16
MD5 7a2bd791094924a63e947642c669c0c2
BLAKE2b-256 e63057bf08943ab4c7517ada4446a31a4d0a3cf2df760c7ec5a9b1c1de45c0a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp312-cp312-win32.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f4605b3a21e009781ed81ca852ee98b80cc63084310d38c9511548179acd058
MD5 73df2e7f2e72feddba45f66446f039cf
BLAKE2b-256 6185f2494e2d481bb21c6aa5ed8f4ceb3f9e4061af067c33be1ba4791d9834dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15523f9650470944164c32ab9467e7a0e87eb8a89ae8e4d79ece25af61bbf341
MD5 52ec3df9efebfab59ac931e10bef7971
BLAKE2b-256 9f27e702e762a144e07e2a55af8d84b050761d64932795446f6938b15b7efc0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa624f65c3299207ddb4bc26f5f7a4aa24d004f19e40f7cb654d574748f06f3c
MD5 f54913008c9c84af749725184e20b2a1
BLAKE2b-256 b9cecccfa3b76ecfab3c46fedf40277b71a27a7b051c970fd8e810bb0efbb19d

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6654559c032b40e5939cdb275d41f7de722883e5a1fc58b6dff63baa7030328b
MD5 b5913f89af4dc76298c4a684aee99932
BLAKE2b-256 8994b8409280ce1f5e932112fa25615344d8694d83ce7f6a4a256a54d0587160

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 afba13a9c5f1688bbbaf05f895d568a3761b13445c1582d4c76a0ac3dbcea57c
MD5 de990d0ac248a81ced1db453e0d656e1
BLAKE2b-256 fdaa5135e26d6278deed09f089078bc4b17631d3b0e3b1a9673a20b352055e21

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp311-cp311-win_amd64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 08202eded7f2ff824c142b4398ac72d642e871b2f8d17c9d80ef6505f8acf467
MD5 049017aa14e7e90d76960a7cc5d59bb7
BLAKE2b-256 25d3a56ed14badad80a2cb342de345818e049a1ed0bb2a43585908220d1eb4f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp311-cp311-win32.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67e1ed2c963db089161bd6315781bc729f0714d51c9fd65a15558759265aa050
MD5 d8f32b1e2cb5ef35f5f2cb11c7f6bfe2
BLAKE2b-256 09d340cb9607c89bb9f2335c93b8ee58466fd015a7b48fca0ac7d3f61d98d268

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2969ab5820f94aa0c4959689b2b7438e6b288117c1bf60ddc1909d7dd282823
MD5 598371ad51aa8665d70266b3aad51388
BLAKE2b-256 fd8a4fa017b237c622d84f9e4760373dde2849e89a1e7015c92c240186062dc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf73db15024cfcfee915c75c80cb509cf3e3f9d143c8955f18f358f4cfa66baa
MD5 de2fe8f00436256cbbb94fa85ab05671
BLAKE2b-256 10ab4b7d100cb80ace1527eb4a3d0b35200090b9a001e7b1e4cf0f5474c0147f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6afddc683667d5f6fcbbf2a81b436a18cd97c0a7f45076a398c648b9ab9f4821
MD5 1c2a3d0f19271e28793440eb9a57709f
BLAKE2b-256 4a9ba213e07bf04ce0ba7ced69c18fec924ec2c79f8fdf6d7669f41e5e358e0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9c06bb6c72c0b75c3b968ce8873d237935c3351cc2383aa7b0dd0b57a2759716
MD5 ad6e8e7b3bbf24bc2e0b67d7a583666c
BLAKE2b-256 b059b2f70463a1a52e215f4f3bb6eee4e87110521398774cb3b92221203d277b

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp310-cp310-win_amd64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6fc2c9045fadb23655c2288f1bcb645f27210246df575e7e48f85f69f74b3936
MD5 6c66a4e44fa7930ccc512b464c8687fe
BLAKE2b-256 0fefef5a6dc1decc041a89174f4c5ce71d1a77beee77cfbc59338dfd290ebbc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp310-cp310-win32.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f77fe52e22f848d44b00033888d29c9c2ff31d0ed885af2088adb55f33aadd0f
MD5 7d43c9bbcaa3e9e9a6391b6043a46cb6
BLAKE2b-256 5bf046dce2184ed7345a59c995b21d494a45865973f013d3cba3e4078c1c6158

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96fc94a0de676bddb2908ca85b7e8e0c66540dcb653a7588a303a655f17cfc89
MD5 ed6d259d51b444fb4816197757b22e45
BLAKE2b-256 582757c3f916996fd51bd087659d3a7b508e074ace1fa31f762763338489d04b

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00a29a17b79afc766fa26ec4cf494e1435b90e6a023792faaf8ea0a7fba109aa
MD5 9e8a463c0c664fc9404d3e5971a7dc59
BLAKE2b-256 eca6e32f2300e604648b4b75eab72a009ca9c5d3eb4a6047412a2e7b65f66840

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file approx_subsetsum-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for approx_subsetsum-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7de748c15f1102e3e2b998392b7747e4d077e10cddd0c3a1dced52a38c49ddc8
MD5 4d472a2a105351560f837dcb39b77be9
BLAKE2b-256 a7be575991bff888b76a4135ebd5aec2e98b41290f51091034d208a8de85e582

See more details on using hashes here.

Provenance

The following attestation bundles were made for approx_subsetsum-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: BuildAndPublish.yml on Bluemi/approx_subsetsum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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