%load_ext autoreload %autoreload 2 from rush import * import matplotlib.pyplot as plt import numpy as np import time
s = State() s.load_puzzle("jams/1.txt") s.plot() print("Is Goal: ", s.is_goal())
Is Goal: False