From 24844be838e752b1f09452e1ae0025d99e47aff0 Mon Sep 17 00:00:00 2001 From: lmoretti96 <51789626+lmoretti96@users.noreply.github.com> Date: Sun, 28 Mar 2021 18:08:55 +0200 Subject: [PATCH] Update test_tabu_search.py --- PyCTBN/tests/optimizers/test_tabu_search.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PyCTBN/tests/optimizers/test_tabu_search.py b/PyCTBN/tests/optimizers/test_tabu_search.py index 54f6a2f..301a52c 100644 --- a/PyCTBN/tests/optimizers/test_tabu_search.py +++ b/PyCTBN/tests/optimizers/test_tabu_search.py @@ -75,7 +75,8 @@ class TestTabuSearch(unittest.TestCase): def test_structure_3(self): with open("./PyCTBN/test_data/networks_and_trajectories_ternary_data_01_6_1.json") as f: raw_data = json.load(f) - + + # read the samples trajectory_list_raw= raw_data["samples"] trajectory_list = [pd.DataFrame(sample) for sample in trajectory_list_raw]