Skip to content

Commit

Permalink
fix: remove debugging code.
Browse files Browse the repository at this point in the history
  • Loading branch information
KaleabTessera committed Nov 19, 2023
1 parent 20af522 commit bc36bdf
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions supersuit/vector/markov_vector_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,6 @@ def step(self, actions):
# combine standard infos and reset infos
infs = [{**inf, **reset_inf} for inf, reset_inf in zip(infs, reset_infs)]

# index by agent ids
infs = {agent: inf for agent, inf in zip(self.par_env.possible_agents, infs)}

print("infs", infs)
exit()

assert (
self.black_death or self.par_env.agents == self.par_env.possible_agents
), "MarkovVectorEnv does not support environments with varying numbers of active agents unless black_death is set to True"
Expand Down

0 comments on commit bc36bdf

Please sign in to comment.