Skip to main content

A fast TSP solver with Python bindings

Project description

fast-tsp

Documentation Status Pip Actions Status PyPI - Version GitHub issues GitHub license

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 cding 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

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

Built Distributions

fast_tsp-0.1.3-cp312-cp312-win_amd64.whl (70.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

fast_tsp-0.1.3-cp312-cp312-win32.whl (62.8 kB view details)

Uploaded CPython 3.12 Windows x86

fast_tsp-0.1.3-cp312-cp312-musllinux_1_1_x86_64.whl (617.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

fast_tsp-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (93.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

fast_tsp-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (61.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

fast_tsp-0.1.3-cp312-cp312-macosx_10_9_x86_64.whl (66.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

fast_tsp-0.1.3-cp312-cp312-macosx_10_9_universal2.whl (122.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

fast_tsp-0.1.3-cp311-cp311-win_amd64.whl (71.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

fast_tsp-0.1.3-cp311-cp311-win32.whl (63.4 kB view details)

Uploaded CPython 3.11 Windows x86

fast_tsp-0.1.3-cp311-cp311-musllinux_1_1_x86_64.whl (617.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

fast_tsp-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (94.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fast_tsp-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (63.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fast_tsp-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl (67.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

fast_tsp-0.1.3-cp311-cp311-macosx_10_9_universal2.whl (124.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

fast_tsp-0.1.3-cp310-cp310-win_amd64.whl (70.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

fast_tsp-0.1.3-cp310-cp310-win32.whl (62.3 kB view details)

Uploaded CPython 3.10 Windows x86

fast_tsp-0.1.3-cp310-cp310-musllinux_1_1_x86_64.whl (617.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

fast_tsp-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (93.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fast_tsp-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (61.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fast_tsp-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl (66.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

fast_tsp-0.1.3-cp310-cp310-macosx_10_9_universal2.whl (122.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

fast_tsp-0.1.3-cp39-cp39-win_amd64.whl (70.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

fast_tsp-0.1.3-cp39-cp39-win32.whl (62.5 kB view details)

Uploaded CPython 3.9 Windows x86

fast_tsp-0.1.3-cp39-cp39-musllinux_1_1_x86_64.whl (617.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

fast_tsp-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (93.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

fast_tsp-0.1.3-cp39-cp39-macosx_11_0_arm64.whl (61.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fast_tsp-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl (66.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

fast_tsp-0.1.3-cp39-cp39-macosx_10_9_universal2.whl (122.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

fast_tsp-0.1.3-cp38-cp38-win_amd64.whl (70.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

fast_tsp-0.1.3-cp38-cp38-win32.whl (62.3 kB view details)

Uploaded CPython 3.8 Windows x86

fast_tsp-0.1.3-cp38-cp38-musllinux_1_1_x86_64.whl (617.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

fast_tsp-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (92.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fast_tsp-0.1.3-cp38-cp38-macosx_11_0_arm64.whl (61.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

fast_tsp-0.1.3-cp38-cp38-macosx_10_9_x86_64.whl (66.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

fast_tsp-0.1.3-cp38-cp38-macosx_10_9_universal2.whl (122.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file fast_tsp-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fast_tsp-0.1.3-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

Hashes for fast_tsp-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f96b62a852a190bf5fcc7fe953c824ec1e7caa0e3be08bcd758cbbb0df75b86b
MD5 651d8c3f35595b7cba632871f2c729dc
BLAKE2b-256 f62eb77c0797fc658bdfc3a1c85911c0ae02a34855ef9716df6a96944b2c0285

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: fast_tsp-0.1.3-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

Hashes for fast_tsp-0.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d681cf394ff63d994b5716f5fc47179cbba483ec4141cd7b8157f87c0f269460
MD5 cc5274f8d1c6d273a6f3f991eef97b9c
BLAKE2b-256 46e91cb54258261f6769930230edae9ca046d78d48d88c4df53635352a0d78b1

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0a343769da3803838fe12f5980565efbe0a3ea820cebda870033befccbdaf1b8
MD5 1ac4dee3338f405782f0ff9b258402a0
BLAKE2b-256 da832d8f4859b1273ee2d2e2230c517fc947376518697446dc7feb5b69862fde

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fa05bb869f62278b0602e312eb7e4f52ea23ac0433d7ce1e14d892ef4998729
MD5 9bc093d72e484730a2ab1c94d1eded26
BLAKE2b-256 7fad4cd11bc257dc3e7ab5a4e3485288ea552fb53c10b9f7a037f13bd3f7e9de

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5eba6f39eea813186d7e2e187cbac3d8f856d2d86c792716fa3eedce4317dae
MD5 ef7c38f734ec585f6819ea38cc59276a
BLAKE2b-256 8ff605f911936d95eeb8dda31ea1943a15a1c580d42425df5a8ac8df3090a90d

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f88286cc3c9acdffbb6dafb6b99742a4fefc7044a62c3a5c87eee4ca5b4d655
MD5 28bffa61ec4379fb5856648fee6cd2d5
BLAKE2b-256 aa77201121cc8e877f6a52f5d4cba668aabc9b2bb13d8d4dad041f55921cf812

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ffed82db9415c0ef59a300634466111c64cf7120212e0a49ad14fe7b75acb1bf
MD5 a77181b42098e5da01a4b677550cf88e
BLAKE2b-256 928b4a3f0b4a7fc33f87d54c5964c5296166fe7f6f0d6278f46eb3e2d282437a

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fast_tsp-0.1.3-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

Hashes for fast_tsp-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6e97908d1d08a991ede0b9b28e5a241ca7f109184dbe8cc270f4940d33ca592a
MD5 48b6c2c98e6195a36b5889675703397a
BLAKE2b-256 190414cd59ee59176a45826011e3f612cc9866f05c0ceb2f5df80f5420f2c3c2

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: fast_tsp-0.1.3-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

Hashes for fast_tsp-0.1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3b0f4a2fef62e24114f0fb4b313fcb477557f13074c1a966fbdaaf3589bd36d5
MD5 1b920bdb1331c413d03f0554df09a532
BLAKE2b-256 bd0761b0fd730b0c4654b89dea7ad3a847e422374a613d3122f232c7ceff5f3e

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5365af3bd6da79d76b8ddbc778acefeac583ccbce24a14a55f92461365288aa7
MD5 c7e0779606a03cd5e7e8bd131da121e8
BLAKE2b-256 d397452c12bd0001ef4410a18c3d117517adfb6c243bad9a02c627c242f8284e

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b8bf3af1bf7f9786821d2469958e8276b8034d1c675e14177f04fcb005a3951
MD5 933119739916d87fe9a48d88eb8ca315
BLAKE2b-256 dbcd49d88c7cf21d6673f5be7f46e81f3b4bf8afec97c73ce71dec35336bdde1

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26ea49c74b3a9c026acf37d291652cae2461164eadf88040d2d0829e919e8b67
MD5 b1a640857c8560aa7a862cd64e2682ee
BLAKE2b-256 abe8f5bea17c224c4e5f77096e9a171eb44e2e53715a9b87e9f2630722bbbda1

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e307f972f8e5a52185aa6a532728f74c871bea0cab1aa93937853e743acb716c
MD5 3c0b5c7f7b9640ce193cc39ba48f291f
BLAKE2b-256 c577960e1680f04d9bbf9c09e4bec5727dedd153f49cbb03b614f1ee1d057e08

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8075d081dd57f55159bb0127c983609e4618909358014f21814f12ae79765a70
MD5 cd3fc3f3660cb5b7b4cc57b64a0a6216
BLAKE2b-256 18801811b238585212f8848cde928e940a41df78e39218b4fa81e7db6f872bfe

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fast_tsp-0.1.3-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

Hashes for fast_tsp-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 57a13048e8e87648693ca26e19a61d0faf91fbedff4540b5575eb86ef5a61a25
MD5 198060a04e6192c1b8857e8896ec7253
BLAKE2b-256 2cd2f1041ea267ac8677658d526ce2c77cf30ae8cacce417649111b194f4558b

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: fast_tsp-0.1.3-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

Hashes for fast_tsp-0.1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8c4795e12769cce4f9ce471070ee8753a2f3990768950d9a36d0dcb06d2037de
MD5 20c5b1aa901690b1d9ced28dd2ffc320
BLAKE2b-256 e155c06ad90b23af25c431ec618cc9a7e9cf8169c03a7569d49c218225b558c5

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 04208ff33d42277cb9e0b3c1c4b57cc59e614ff82b4c5362e6372493fee0ad0e
MD5 a4b87c350c704b68845105375c0df184
BLAKE2b-256 b3f3b1a3a7ffdf1103a1c6a2e8a3fe6406572b7a9971a46b49a925157ecfac0c

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6f6716a106e8a96a622a707aaf2e418c4e2ac327c24cb6570eb4193387deedd
MD5 bc0d5a8023f2dba69326d10e3f4d86c2
BLAKE2b-256 565639378a68f2712837dca3b86a3726d037e60b0898b98dbad0ce48db111b5f

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83a124dd9b707c7547bba2bf2b87de4b0bd778e25fb961bba602e089ecf9a58c
MD5 c3c4f619f466610726be2c19a69a8d05
BLAKE2b-256 9f9057633298c701d8a9094b4544cf37f0fba3793c31b5da6e365dcf46e3e63f

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06bdab646e061862db9c71431eabdd715c82994e9ed297ddeba101e9d0849003
MD5 dc6075637d4da6a9fa7460de8424025d
BLAKE2b-256 0afe3318eaf9daf137bff5e1360a40cdec1eec2df449f2bf35911f3a59c1d458

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dbfc5a9eb9bbd6c3469a930ddb73c9ae3059ff880241b85eab23edf98b9cf836
MD5 d2d80a5e7dd7e736552b05783cea1a5e
BLAKE2b-256 fe44d4bb78caf760115c00a97049e8de1791b72b8a2936e28b5583980d0529ca

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fast_tsp-0.1.3-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

Hashes for fast_tsp-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0f51a54d59c8e6382d7e65ba576c6aef42955dad13ea3e31ca77fbf64ceb3566
MD5 d38ac563864805bed52ddb281853be12
BLAKE2b-256 e237be4a15b92295596a0e1c1b6067305e8049acc7c219a0833d2bd88e25468c

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: fast_tsp-0.1.3-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

Hashes for fast_tsp-0.1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fb361463600eb77d075513d6bb63eb3a507d9f1ce774098bee7b5d9d1417586c
MD5 13ad61c80f2dfe9a18010fe56dc404c6
BLAKE2b-256 4fc4a9e102a8734099f264778fecdc9f2fb977e7a7298d8a861a570f9de33564

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d5438acdb0f4dac8f3cccf4ee0d651a2b42558babd4350805476cd133d00b9c8
MD5 d824ae278988425c9630aeebc382c8dd
BLAKE2b-256 a90d48092da5912e29cf8cb72d5dd87df3e4e0ad5150a55897993a004883261d

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32c94e8637196956d0a7bc0762a99cb7f861e01b4020e16b654c1d77e690df63
MD5 77ff9cea949398139e1e9c88e97dcb2b
BLAKE2b-256 653e984261a7454e0e03fdbaa10886fe9b01a6447465337c4f20b1d70a5ff7b1

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 656049f98c388503502d7743c71cd808d3f0547d69dd96682149bce8a02b07ff
MD5 7a52cdec02ad793468756274d9e01bba
BLAKE2b-256 49a2a6f87290ae484a160109c0abbe764cc7f1a580dad273804d5f75a710101e

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea44c2127911c9f5c1f66059e1056a4fb17b6b78d47e2916966ef2fae57d7afe
MD5 eaa04c9a69a51fcf806fc1180698dca6
BLAKE2b-256 0f5aec289c1e6c68cdfb72df33632fe107a9b809703a1f1f0aad65dae3d0b5d2

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 771a293258ea9f8fb5d13041c08a40c4e66db368d9018533e4bc0104d7e31a3b
MD5 f17dbc4895213e80980fd52e797ec53e
BLAKE2b-256 813b0576a309ab77eb1294fa50394fd0035ec1e4cce33a95a3126a36d11b27e5

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fast_tsp-0.1.3-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

Hashes for fast_tsp-0.1.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a860355dc9650e03c57e5b3833b320416496c6ead663d31b76f789a1bccf9fd2
MD5 09859436a5583cb212cb1703ef282604
BLAKE2b-256 bd71a457114b982d6188d8e9697cbe822ada6b258f81ca7865e0830750f0db80

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: fast_tsp-0.1.3-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

Hashes for fast_tsp-0.1.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 abf67751b63f34113c6e6b70f729a9742576493290ebca13479172e442984581
MD5 8cf21474050f6c67dd5fc65c99a19b73
BLAKE2b-256 d9bb7b7331b3b96b1350ce70a170e98cac8a4b4296d67b83ae71e6ecd36859b8

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1a8d05bd0f3dbb231bbbef74e18108f73aadbbb9671af2555549deb9d5ed2bec
MD5 cfee18e81592f247815623f6f4bd22c4
BLAKE2b-256 d3d686273d45b55f4632f57d6f364f314d2ddd8912891f8e12e9032fd71306fb

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c368741193b9e28af146883e395f6879f52c53c19a0fa3b8eb80317361ad96d
MD5 e35d41e4f8bccbd9e1a97f9fd8951f36
BLAKE2b-256 b6647b442472b5c6dd3d54c3775fb36f8b0d9a6310c6723ddad9d4b4a6216967

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40f209b081d7da66102eefb2a3d5db045997635c319b5a309f22a8662bba9e43
MD5 8f1bee6b5aecab391681124daf692449
BLAKE2b-256 ae2d781f62041f2099ae8daa839fb0e4b575fc15d231f6576e4cf7acf1f95c2f

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4fbbf5f1c6b2d37f3830bdf0e98fa74f386816f5e908fd09ca1e426c5a1720a9
MD5 4048f95b953143184bdaf5c1a2057db5
BLAKE2b-256 036506cfa4fc0621ffefdae9b92df71faa824ab6f68e900ac3f2ee4a50d452a8

See more details on using hashes here.

File details

Details for the file fast_tsp-0.1.3-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fast_tsp-0.1.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1fc4432f903385771d4d945687f69d106cbdad313a7efd922811543973bde3cd
MD5 ddc76c5bf95acf98adb423eb6629ba6f
BLAKE2b-256 a273067abf2a9433f35939aebcfec717620c07f3b41af5071fd4877893366e91

See more details on using hashes here.

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