This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
AICup/src/__init__.py

18 lines
508 B
Python
Raw Normal View History

2019-10-29 12:28:47 +00:00
import os
if 'AI' in os.getcwd():
2019-11-09 15:42:23 +00:00
from src.utils import *
2019-11-18 06:03:34 +00:00
from src.constructive_algorithms import *
from src.local_search import *
2020-09-25 11:20:28 +00:00
from src.iterated_local_search import *
2019-10-31 15:04:38 +00:00
from src.TSP_solver import *
from src.io_tsp import *
2019-11-18 06:03:34 +00:00
2019-10-29 12:28:47 +00:00
else:
2019-11-09 15:43:36 +00:00
from AI2019.src.utils import *
2019-11-18 07:37:44 +00:00
from AI2019.src.constructive_algorithms import *
from AI2019.src.local_search import *
2019-11-18 07:51:42 +00:00
from AI2019.src.meta_heuristics import *
2019-10-31 18:09:18 +00:00
from AI2019.src.TSP_solver import *
2019-11-09 15:41:14 +00:00
from AI2019.src.io_tsp import *