summaryrefslogtreecommitdiff
path: root/src/main.py
blob: 27620b77a1f3ac569d995aff55e742dbb0770053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from simple import SIMPLE
from research import Research

model = SIMPLE((30, 30), (0, 0), 0.02, 40)

research = Research(model, 'testing')

is_complete = research.load()

if is_complete:
    research.inspect()
else:
    research.solve(preview=True)