This commit is contained in:
UmbertoJr 2019-11-09 16:43:36 +01:00
parent 68e55698ca
commit b11cf6d076
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
import numpy as np
from matplotlib import pyplot as plt
from numpy.core._multiarray_umath import ndarray
if 'AI' in os.getcwd():
from src.utils import *
else:
from AI2019.src.utils import *

View File

@ -5,6 +5,6 @@ if 'AI' in os.getcwd():
from src.TSP_solver import *
from src.io_tsp import *
else:
from AI2019src.utils import *
from AI2019.src.utils import *
from AI2019.src.TSP_solver import *
from AI2019.src.io_tsp import *