Compare commits

..

No commits in common. "ad0e642964e3fa6620c82e0de26931d77c8ded03" and "c918e1007bfa17fcb1f319340a9e783df5b9ed66" have entirely different histories.

5 changed files with 5 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 97 KiB

13
main.py
View File

@ -132,16 +132,13 @@ def wozek_serves_orders(wozek, grid_points, drzewo):
def add_another_order(ekran, pred_list):
if random.random() < 0.5:
if random.random() < 0.5:
order = Paczka('duzy', 12, 'motoryzacja', False, True, False,
any, any, any, any, any, pred_list[6])
order = Paczka('duzy', 12, 'narzedzia', False, True, False,
any, any, any, any, any, pred_list[3])
else:
order = Paczka('maly', 1, 'kuchnia', False, True, False,
any, any, any, any, any, pred_list[7])
order = Paczka('maly', 1, 'ogród', False, True, False,
any, any, any, any, any, pred_list[1])
else:
if random.random() < 0.5:
order = Letter(pred_list[5])
else:
order = Letter(pred_list[4])
order = Letter(pred_list[2])
ekran.dodaj_na_rampe_jedno(order)