From ed270740c5495a5aa49ca94b6caa35cc3fed4707 Mon Sep 17 00:00:00 2001 From: UmbertoJr Date: Mon, 18 Nov 2019 08:51:42 +0100 Subject: [PATCH] init --- src/__init__.py | 2 ++ src/meta_heuristics.py | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 src/meta_heuristics.py 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