init
This commit is contained in:
parent
4a356d2617
commit
ed270740c5
2 changed files with 12 additions and 0 deletions
|
@ -4,6 +4,7 @@ if 'AI' in os.getcwd():
|
||||||
from src.utils import *
|
from src.utils import *
|
||||||
from src.constructive_algorithms import *
|
from src.constructive_algorithms import *
|
||||||
from src.local_search import *
|
from src.local_search import *
|
||||||
|
from src.meta_heuristics import *
|
||||||
from src.TSP_solver import *
|
from src.TSP_solver import *
|
||||||
from src.io_tsp import *
|
from src.io_tsp import *
|
||||||
|
|
||||||
|
@ -11,5 +12,6 @@ else:
|
||||||
from AI2019.src.utils import *
|
from AI2019.src.utils import *
|
||||||
from AI2019.src.constructive_algorithms import *
|
from AI2019.src.constructive_algorithms import *
|
||||||
from AI2019.src.local_search import *
|
from AI2019.src.local_search import *
|
||||||
|
from AI2019.src.meta_heuristics import *
|
||||||
from AI2019.src.TSP_solver import *
|
from AI2019.src.TSP_solver import *
|
||||||
from AI2019.src.io_tsp import *
|
from AI2019.src.io_tsp import *
|
||||||
|
|
10
src/meta_heuristics.py
Normal file
10
src/meta_heuristics.py
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
class Simulated_Annealing:
|
||||||
|
|
||||||
|
def __call__(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class Iterated_Local_Search:
|
||||||
|
|
||||||
|
def __call__(self):
|
||||||
|
pass
|
Reference in a new issue