A fast TSP solver with Python bindings
Project description
fast-tsp
A library for computing near optimal solution to large instances of the TSP (Travelling Salesman Problem) fast using a local solver. The library is written in C++ and provides Python bindings.
Quickstart
First install the library
$ pip install fast-tsp
Then run the problem on your 2D distance matrix:
import fast_tsp
dists = [
[ 0, 63, 72, 70],
[63, 0, 57, 53],
[72, 57, 0, 4],
[70, 53, 4, 0],
]
tour = fast_tsp.find_tour(dists)
print(tour) # [0, 1, 3, 2]
Documentation
Documentation can be found at https://fast-tsp.readthedocs.io/.
You can build the documentation by cd
ing to docs/
and running make clean && make html
.
Citation
If you find that this project helps your research, please consider citing it using the metadata from the CITATION.cff
file.
License
This library is licensed under the MIT license. Additionally, it uses pybind11
which is provided under a BSD-style license that can be found in the LICENSE file. By using, distributing, or contributing to this project, you agree to the terms and conditions of this license.
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
Built Distributions
File details
Details for the file fast_tsp-0.1.4-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 70.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1022783fe51c8277cb9f6f3944fe0b2dee4f77487043f9149aecd1a50f6ba75 |
|
MD5 | 35b75a9955964db91869bea65c15c447 |
|
BLAKE2b-256 | 28fff020ae26bb9501c35290f2147c951f775fa4696635516994161abb551bae |
File details
Details for the file fast_tsp-0.1.4-cp312-cp312-win32.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp312-cp312-win32.whl
- Upload date:
- Size: 62.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a27855c360aed29fab70085e42372e5244ebd984513f83145e50430ea2f0452 |
|
MD5 | 0ee0c6931f21cd9e453a84fa6df8ebf1 |
|
BLAKE2b-256 | 45237778f1551034f70494ae3b8edd5ebfefd7bf8ecc10174a619369dc5730d8 |
File details
Details for the file fast_tsp-0.1.4-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 617.6 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c1f63658fcf0fff0822274408f53b42d9aed26629ae22c57c46c8b676ee8c61 |
|
MD5 | 3c719c6e88a4bad47653e1f5a07a0b3f |
|
BLAKE2b-256 | 3ee30fe5930e8e658b9da62b0867eada14e4a77cca496d1178ef07691256c6be |
File details
Details for the file fast_tsp-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 93.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb0df9d4edd9908580a759ebde63651e0a04f1b45ddd47f9f3e241b703d1ab8f |
|
MD5 | b61f465005629d0990ba2c152e223194 |
|
BLAKE2b-256 | 022719299f389564b9dbf025ffffda3c93524c15fb0dd47fa818d408aa08386f |
File details
Details for the file fast_tsp-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 61.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1044fc157203366d9ec567283d82240624739a3690c85d6579d34f80a5f146a |
|
MD5 | 07f79a78ffc79fcee2216d401d89d827 |
|
BLAKE2b-256 | 9359ea8ddfe896d0004ab534e763678c0c7d5cfbfaac2dffdf2f999067915ecc |
File details
Details for the file fast_tsp-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 66.5 kB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d5641805643ae41f2370599abec600e963929d250766eea5e5b0ab097fe66f3 |
|
MD5 | 7f1735692a83f4ebd3104beda62311be |
|
BLAKE2b-256 | 413bdf5f5157d7bf9f7af6c1c4640d64a69a5004f4a339368ed9add707e24fb2 |
File details
Details for the file fast_tsp-0.1.4-cp312-cp312-macosx_10_9_universal2.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp312-cp312-macosx_10_9_universal2.whl
- Upload date:
- Size: 122.0 kB
- Tags: CPython 3.12, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | abb3ad48642ed54ed6fbc785f58766c82b50b0f64ecd1b8de68df761bd5338d8 |
|
MD5 | 5bd7821dbc8de26f3c0750040b9bb05b |
|
BLAKE2b-256 | 41759e5e526d6139acaa0aba4be2ea9a17e4f6633817d653398a3255680c53ca |
File details
Details for the file fast_tsp-0.1.4-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 71.4 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a27d98af047af4093d7c4d74405e526b4c28a206c0017eb3fa9d80847fa6bf80 |
|
MD5 | 917682c38cb3bc03bfc85635f5e00cd9 |
|
BLAKE2b-256 | 8ad1c0b8e0d0b1fdd5a8d1b9092cac8512d0dc63176f7f0572a9307034e7b855 |
File details
Details for the file fast_tsp-0.1.4-cp311-cp311-win32.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp311-cp311-win32.whl
- Upload date:
- Size: 63.4 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4a52c1b61e8e6cd898b0440fe3cc338296f04528a2f2320321fc76d2aa780e3 |
|
MD5 | c127788e6d9a1c9fc79b012de790e759 |
|
BLAKE2b-256 | 736e12c980c001bb500cd371f2b9ee5680c1615023b97e9922e8d5bd553f0b3c |
File details
Details for the file fast_tsp-0.1.4-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 617.9 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bf8bbbf947491cde9ccb66a3846b01932ecb551567a2c42fb28c7d23c777c1a |
|
MD5 | 909f99f50cf9ef5e048ba3fd7e2be9a3 |
|
BLAKE2b-256 | e0dae8cc160a197b2bd1cf6f90d5b5f22430f8f6e98bda3b34e14fc1bd4fcaf4 |
File details
Details for the file fast_tsp-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 94.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 919ac5466279a059024c43fcbcd32ede2117710cc7f70ac2a10b1d3b5fe4d0c0 |
|
MD5 | ebf8446aff91dabbe4531abce8744a25 |
|
BLAKE2b-256 | 22231259e71dd988f903674dcfdf7747e6b9f9696fdc4ca44e9182658c05c261 |
File details
Details for the file fast_tsp-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 63.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ffcbf8c8f9bc02b5ba7f928f50920c39d9578076611ad0f543f4935ea0f2ed8 |
|
MD5 | 76817721db11d0fd522ff624160d2f44 |
|
BLAKE2b-256 | 5d239e5266c6d9e095f41b5213d0ebede0eab6ef4876acee1046fbf56d367af3 |
File details
Details for the file fast_tsp-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 67.6 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f71e5b052269a1c4874bd02cb0e6682da94873b83b1a41e20b6cbd2bbd66de8 |
|
MD5 | d8aaa69cc572f89d2cefdc8bedb7c742 |
|
BLAKE2b-256 | 77deaa48b5c224097a2c8a9c050eb1b31f9963b441178ce7b7fcbf024ef6c927 |
File details
Details for the file fast_tsp-0.1.4-cp311-cp311-macosx_10_9_universal2.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 124.7 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8182c7a7cd1f0711cea9aa1c4fed60b58581952ce17a32be1ba6d9438b3cf97a |
|
MD5 | 37d6bba05b337894ee97770036f78292 |
|
BLAKE2b-256 | be575cb516392e5329ff8c39d23dfe62790d86ea42d651f5de5e3a5aea4ebd80 |
File details
Details for the file fast_tsp-0.1.4-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 70.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b975a73e60939a48534b7665062da814232ec2674b3c2c340a7ce506d2db74e7 |
|
MD5 | 2cc9f3410863aef5c879580217b5946a |
|
BLAKE2b-256 | 02f8792dfce6e0979931a7b8a6e2962c32c3733ef3590eb54b7238a875bbadac |
File details
Details for the file fast_tsp-0.1.4-cp310-cp310-win32.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp310-cp310-win32.whl
- Upload date:
- Size: 62.3 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffd2fba5cc1e63f8f0be611795bc2ce3ffd9cfcc8e3de00b8342c6e78ae1e89c |
|
MD5 | 4d1b17a796e5d89272995b21c096f94c |
|
BLAKE2b-256 | d87ce74ffc31e8a73369274a653dc9e9ad6a398e0863ffc60c9ac2457edbeee6 |
File details
Details for the file fast_tsp-0.1.4-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 617.6 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22d898029fe7d7226d44f0c3bbe03ad6cbdbc2aa78bb312300d2ba859295ef5d |
|
MD5 | 7a3b29ca95f50860344b7d3006f64574 |
|
BLAKE2b-256 | adb61068170a00a7b097f083931664bb7a295e030318c7055cdda1731ab82e8d |
File details
Details for the file fast_tsp-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 93.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a5eb8ee53cb0fcc9a83fdb02e50702f18618503febd149e9a3db4d00c29afb9 |
|
MD5 | 098a8b4be0535ae020d730cf8f4821c9 |
|
BLAKE2b-256 | 96c6a9a3c02d1b1030dcd634ae9d49cfe55d1c07e1b2f9686718673b9f0aa94d |
File details
Details for the file fast_tsp-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 61.8 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04411c6544c5553cc3560ef158dd45921db05adb23fdba401646afaf61ccd478 |
|
MD5 | fa62282f6e1669340e044c485b3e03aa |
|
BLAKE2b-256 | 458d5b5deb5daf0926bb0799f05380caf59da64245be5ac5e64c97e2d2cf72a4 |
File details
Details for the file fast_tsp-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 66.3 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a098e5da27436eb6c5be3ca817dd8efa1efc6a7356562df1c8a1d6685156107b |
|
MD5 | 609477765578dc6a719a20259dfa4468 |
|
BLAKE2b-256 | ec8042c5b058c2f5c7605a2ab8294356ac84032a39d1741803bb61f1c63fefce |
File details
Details for the file fast_tsp-0.1.4-cp310-cp310-macosx_10_9_universal2.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 122.0 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05a15327e370c0bb87b143b4ef814753c6fb074361336f7faadf5b93c6a52d97 |
|
MD5 | 6fef9ffe0462cdaa5a3a88ef07462e95 |
|
BLAKE2b-256 | 8686f32db7e50cde7b9e9e255fa50adfb336451a5c7b6ed8257d6ffacfae38ea |
File details
Details for the file fast_tsp-0.1.4-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 70.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9884ebe9b6be8998cd59e581b9341dc1ea0b8216303e439707631aeb8757ce4b |
|
MD5 | bd7ccda5dd00a4510d7ca8fdeea77911 |
|
BLAKE2b-256 | cb103f6e5d7f212622a6f3d01334b7531b0caa09ccad9b50e29b8832a208d58b |
File details
Details for the file fast_tsp-0.1.4-cp39-cp39-win32.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp39-cp39-win32.whl
- Upload date:
- Size: 62.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6ce368b55ad7aa0e379b01d3dffb5f19bb293efe9756fdfb1bd6c80403bd5fa |
|
MD5 | bacea8c5948f4f5a4f9b9bc9b80f2e47 |
|
BLAKE2b-256 | eb0277b72d8a64d42a6782a92a629e494fc8967a1005831cf48f2c6ec50383b7 |
File details
Details for the file fast_tsp-0.1.4-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 617.7 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e72b8911ab7162a22d395265c6091e8b86af5b578343f7dee1b4e798031c0f2 |
|
MD5 | 0cae7673d052f6832e906af6ae095dcf |
|
BLAKE2b-256 | 53345c222ce0d8f4c995224e0fc407bfec63f9e838f9a080b24b57a15003e381 |
File details
Details for the file fast_tsp-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 93.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c7379fc79a2a79d0b4fd95863b6a40499464dbdc2a4d50551abce3789433889 |
|
MD5 | eb6651b11f0eaf55442ed738ddde1f7d |
|
BLAKE2b-256 | 243063d1288d1c8189b79cee31ba999d9c8659133a11718b07cbb166037ca114 |
File details
Details for the file fast_tsp-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 61.9 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aae9fc6d63f20e6b3dd1255d2a511a9fe79501e468c68389552125210bfe5f60 |
|
MD5 | 0b0fcb2adfd49cdbf681c8c74b0e15bd |
|
BLAKE2b-256 | be8d07d56dce46794f3f192d7cc63d3b9b5d6981610013680a1b4a18a52a8ee5 |
File details
Details for the file fast_tsp-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 66.4 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a577f824891859fb4d9fa2a9c915f5efd85028614d8c481dbbd9f2719c2ac03 |
|
MD5 | 7ec4760051279143f449a0fcbb2a4849 |
|
BLAKE2b-256 | 49bf76046ebd5c35f499a998fd865da5d613a073de90d22f3ba35851015eb279 |
File details
Details for the file fast_tsp-0.1.4-cp39-cp39-macosx_10_9_universal2.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 122.2 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb7fc4c49d384bd95d8c66509119a746af346fbe19d3a1e7dd72c2a17fe38cb7 |
|
MD5 | eadc4002f4e8fea995574d16737e7532 |
|
BLAKE2b-256 | c75fc58d15d1f9fe50a09aef72cdafa4949c41fa053f08c5ef6474f151dd6fc9 |
File details
Details for the file fast_tsp-0.1.4-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 70.1 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec101c1e9054648525a85b869bdf0c93c98b5c99897f6108d04d442d3cfbf362 |
|
MD5 | f4fa11137a1e4623aac1fcde221ee116 |
|
BLAKE2b-256 | 13ef3fd850f83126be0658c2f9aabadc4c794aabf975fc46f034d1ebf5e7a3e8 |
File details
Details for the file fast_tsp-0.1.4-cp38-cp38-win32.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp38-cp38-win32.whl
- Upload date:
- Size: 62.3 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d64e81400ab84a0612409b9abbaacd7e4ffd29cbe0583aa1b55435643afecef9 |
|
MD5 | b2e44f69e7e4733d1c3cc470ad59cf25 |
|
BLAKE2b-256 | 6664cac572ea94b80309d63b3d8deb4ea36c19687610da9c87626256fa79d6b4 |
File details
Details for the file fast_tsp-0.1.4-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 617.5 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | acae5bd9cf1669688b9b770ec03f1abedb0d572574f799d2fd940a2ea9e5f82a |
|
MD5 | fb3c59afc06cb37761315823c4525f81 |
|
BLAKE2b-256 | 58b5fd5ab195f5a9500835f80fbccc8f94b0413175acd9fcdc6671eefe5a8ddc |
File details
Details for the file fast_tsp-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 92.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed3e7b217e795943a51e1cb02e60356f2744d1ddfdcf75c4ef136f41d69c6077 |
|
MD5 | 4f2e63cac40c49a27b8126b684f0daca |
|
BLAKE2b-256 | 5222c00329a9f34f542489379a57670f3019edd73f79d84a9bd92ce3b7fb405d |
File details
Details for the file fast_tsp-0.1.4-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 61.8 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d09083b4569c7f5bcc25cdb6201e96674f01be98d04833a5b7278a909e908d0 |
|
MD5 | c9b33df6505467cafa84d87b2604676f |
|
BLAKE2b-256 | 73d8f0b67056495d3b8e809240acbc7dc991c3b782e2461806db386d1e19feef |
File details
Details for the file fast_tsp-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 66.3 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59b43afef9be0b6bb0d29a74b669782717057f36c7256a24d7d04df576f75b19 |
|
MD5 | 4567623f13889f31879fdf39114c038d |
|
BLAKE2b-256 | 60f959ccc43e57747a0e31edb301da3c615f5548d26cb80dc45aa7be861c6dfa |
File details
Details for the file fast_tsp-0.1.4-cp38-cp38-macosx_10_9_universal2.whl
.
File metadata
- Download URL: fast_tsp-0.1.4-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 122.1 kB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0705a43ef1493cafb2b7e02ff89c03faec3bd3958676777aeddd7d5406012e7f |
|
MD5 | 40192d8066829d44573d25c5756dc589 |
|
BLAKE2b-256 | 19b6a3dd87fbb6009b9f68a9789b2dfd662743188d6501f74eee32a3e0ebff51 |