This commit is contained in:
UmbertoJr 2019-11-09 16:41:14 +01:00
parent 9a4b9af587
commit 98f018f43d
2 changed files with 4 additions and 2 deletions

View file

@ -1,7 +1,7 @@
import numpy as np import numpy as np
from matplotlib import pyplot as plt from matplotlib import pyplot as plt
from numpy.core._multiarray_umath import ndarray from numpy.core._multiarray_umath import ndarray
from src.utils import *
class Solver_TSP: class Solver_TSP:

View file

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