Skip to content

Commit

Permalink
Removed print statement used for debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
troiwill committed Apr 19, 2024
1 parent cad3e92 commit 835449d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pomdp_py/problems/rocksample/rocksample_problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ class RSPolicyModel(pomdp_py.RolloutPolicy):

def __init__(self, n, k):
check_actions = set({CheckAction(rock_id) for rock_id in range(k)})
print(check_actions)
self._move_actions = {MoveEast, MoveWest, MoveNorth, MoveSouth}
self._other_actions = {SampleAction()} | check_actions
self._all_actions = self._move_actions | self._other_actions
Expand Down

0 comments on commit 835449d

Please sign in to comment.