diff --git a/DNA.py b/DNA.py index 36c69d6..98ca6a6 100644 --- a/DNA.py +++ b/DNA.py @@ -4,12 +4,6 @@ from astar import Astar from random import shuffle import numpy as np -A = np.zeros((10, 10), dtype=int) - -goals = [[0, 4], [4, 0], [4, 4]] - -recordDistance = 0 - class DNA: def __init__(self, target, recordDistance):