When I run demo_gameplay.py in cooking_zoo/, and complete the recipe with manual policy, the program will stuck in the step of cooking_zoo\demo_gameplay.py:30:
And I try to figure it out, it sames like the problem is in the pettingzoo's library, in Lib\site-packages\pettingzoo\utils\conversions.py:217-221:
while self.aec_env.agents and (
self.aec_env.terminations[self.aec_env.agent_selection]
or self.aec_env.truncations[self.aec_env.agent_selection]
):
self.aec_env.step(None)
So it will stuck in the while block.
I want to know is it working normally or is there any solution to this problem.
When I run
demo_gameplay.py
incooking_zoo/
, and complete the recipe with manual policy, the program will stuck in the step ofcooking_zoo\demo_gameplay.py:30
:And I try to figure it out, it sames like the problem is in the pettingzoo's library, in
Lib\site-packages\pettingzoo\utils\conversions.py:217-221
:So it will stuck in the while block. I want to know is it working normally or is there any solution to this problem.