SimulatedEnvMixin

class maze.core.env.simulated_env_mixin.SimulatedEnvMixin

Environment interface for simulated environments.

The main addition to StructuredEnv is the clone method, which resets the simulation to the given env state. This interface is used by Monte Carlo Tree Search.

abstract clone_from(env: maze.core.env.structured_env.StructuredEnv)None

Clone an environment by resetting the simulation to its current state.

Parameters

env – The environment to clone.