diff --git a/src/__init__.py b/src/__init__.py index caa9d21..049c2e1 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -4,6 +4,7 @@ if 'AI' in os.getcwd(): from src.utils import * from src.constructive_algorithms import * from src.local_search import * + from src.meta_heuristics import * from src.TSP_solver import * from src.io_tsp import * @@ -11,5 +12,6 @@ else: from AI2019.src.utils import * from AI2019.src.constructive_algorithms import * from AI2019.src.local_search import * + from AI2019.src.meta_heuristics import * from AI2019.src.TSP_solver import * from AI2019.src.io_tsp import * diff --git a/src/meta_heuristics.py b/src/meta_heuristics.py new file mode 100644 index 0000000..8e34a6e --- /dev/null +++ b/src/meta_heuristics.py @@ -0,0 +1,10 @@ +class Simulated_Annealing: + + def __call__(self): + pass + + +class Iterated_Local_Search: + + def __call__(self): + pass