-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathread_input_files_.py
30 lines (26 loc) · 965 Bytes
/
read_input_files_.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import numpy as np
import os
from scipy.spatial.distance import euclidean
def read_tsp_file(fname):
with open(os.path.dirname(__file__) + '/data/%s' % fname) as f:
while f.readline() != 'TYPE : TSP\n':
pass
points_count = int(f.readline().split(':')[1])
while f.readline() != 'NODE_COORD_SECTION\n':
pass
coord = np.zeros(shape=(points_count, 2))
for i in range(points_count):
coord[i] = f.readline().split()[1:]
return coord
def create_matrix(fname):
coord = read_tsp_file(fname)
full_name = os.path.dirname(__file__) + '/data/%s_matrix.npy' % fname.split()[0]
try:
matrix = np.load(full_name)
except IOError:
matrix = np.zeros((len(coord), len(coord)))
for i in range(len(coord)):
for j in range(len(coord)):
matrix[i][j] = euclidean(coord[i], coord[j])
np.save(full_name, matrix)
return matrix