From 06a8d30f0fe2e91242c99b3d21ddedf927fcc734 Mon Sep 17 00:00:00 2001 From: tbuckworth <elkilesh@hotmail.co.uk> Date: Wed, 27 Nov 2024 17:15:39 +0000 Subject: [PATCH] created Task class --- json_tests.py | 2 +- main.py | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/json_tests.py b/json_tests.py index d89aa07..2a0463c 100644 --- a/json_tests.py +++ b/json_tests.py @@ -3,7 +3,7 @@ import unittest import numpy as np -from main import load_task, grid2FOL, FOL2grid, FOL2prolog, prolog2FOL_array, run_prolog_program, array_and_plot_grid +from main import load_task, FOL2grid, FOL2prolog, prolog2FOL_array from task import Task diff --git a/main.py b/main.py index 469c6b1..6095458 100644 --- a/main.py +++ b/main.py @@ -7,6 +7,14 @@ import pandas as pd import matplotlib.pyplot as plt import subprocess +tasks = { + "lines": "0b148d64.json", + "grids": "90f3ed37.json", + "pour": "d4f3cd78.json", + "cross": "e21d9049.json", + "stripes": "f8c80d96.json" +} + def run_prolog_program(program, curr_dir=""): # Construct the command to run SICStus Prolog -- GitLab