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
2019-11-09 16:42:23 +01:00

11 lines
241 B
Python

import os
if 'AI' in os.getcwd():
from src.utils import *
from src.TSP_solver import *
from src.io_tsp import *
else:
from AI2019src.utils import *
from AI2019.src.TSP_solver import *
from AI2019.src.io_tsp import *