MecCogChallenge / evaluation.py
Emma Scharfmann
build challenge template
2d55199
Raw
History Blame Contribute Delete
331 Bytes
import json
from pathlib import Path
def evaluate_problem(
input_file: str
):
with Path(input_file).open("r") as f:
raw = f.read()
data_dict = json.loads(raw)
data = data_dict['boundary_json']
print("Starting evaluation.")
result = 0
print("Finished evaluation.")
return result