This commit is contained in:
UmbertoJr 2019-10-31 16:04:38 +01:00
parent 5aa7ed5600
commit 69e9aa4c81
4 changed files with 3 additions and 3 deletions

2
run.py
View File

@ -1,4 +1,4 @@
from code import *
from src import *
import os

View File

@ -1,8 +1,8 @@
import os
if 'AI' in os.getcwd():
from code.TSP_solver import *
from code.io_tsp import *
from src.TSP_solver import *
from src.io_tsp import *
else:
from AI2019.code.TSP_solver import *
from AI2019.code.io_tsp import *