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

11 lines
241 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-10-31 15:04:38 +00:00
from src.TSP_solver import *
from src.io_tsp import *
2019-10-29 12:28:47 +00:00
else:
2019-11-09 15:42:23 +00:00
from AI2019src.utils 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 *