Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: fikisipi/elkai

2.0.1

09 May 17:34

Choose a tag to compare

  • elkai.solve_int_matrix and elkai.solve_float_matrix are now deprecated.
  • The solver no longer uses LKH 2, now we use LKH 3
  • The cleaner API looks like this (note that we now include the last element as the departure to the first city):
import elkai

cities = elkai.Coordinates2D({
    'city1': (0, 0),
    'city2': (0, 4),
    'city3': (5, 0)
})

print(cities.solve_tsp()) # Output: ['city1', 'city2', 'city3', 'city1']
import elkai

cities = elkai.DistanceMatrix([
    [0, 4, 0],
    [0, 0, 5],
    [0, 0, 0]
])

print(cities.solve_tsp()) # Output: [0, 2, 1, 0]

0.1.2

22 Apr 13:35
ef8ee98

Choose a tag to compare

  • Added wheels for more platforms

1.0.27

08 Jan 13:22
3fea739

Choose a tag to compare

elkai appveyor wheels

v0.1.2

08 Jan 16:48
3fea739

Choose a tag to compare

elkai appveyor wheels

v0.0.9

24 Oct 21:22

Choose a tag to compare

elkai appveyor wheels

v0.0.7

14 May 22:47

Choose a tag to compare

Revert setuptools

v0.0.6

14 May 22:22

Choose a tag to compare

Upgrade setuptools before making wheel

v0.0.5

14 May 21:36

Choose a tag to compare

Camel case in elkai.c

v0.0.4

14 May 19:04

Choose a tag to compare

Version increase to 0.0.4

v0.0.2

04 May 16:44

Choose a tag to compare

Bump to 0.0.2