Skip to content

Commit

Permalink
HotelLocs_B
Browse files Browse the repository at this point in the history
  • Loading branch information
danr committed Feb 20, 2024
1 parent ac70f1c commit c1ff3ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cellpainter/cellpainter/moves.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@

# UR room:
HotelLocs_A = [h+1 for h in range(21)]
HotelLocs_B = [h for h in HotelLocs_A if h % 2 == 1]
HotelLocs_B = [21, 19, 17, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
# [h for h in HotelLocs_A if h % 2 == 1]

# PF room:
HotelLocs_H = [h+1 for h in range(19) if h+1 != 12]
Expand Down

0 comments on commit c1ff3ec

Please sign in to comment.