* add makefile * bump version * add isort and yapf * update contributing.md * update PR template * spelling check
20 lines
344 B
Python
20 lines
344 B
Python
"""Env package."""
|
|
|
|
from tianshou.env.maenv import MultiAgentEnv
|
|
from tianshou.env.venvs import (
|
|
BaseVectorEnv,
|
|
DummyVectorEnv,
|
|
RayVectorEnv,
|
|
ShmemVectorEnv,
|
|
SubprocVectorEnv,
|
|
)
|
|
|
|
__all__ = [
|
|
"BaseVectorEnv",
|
|
"DummyVectorEnv",
|
|
"SubprocVectorEnv",
|
|
"ShmemVectorEnv",
|
|
"RayVectorEnv",
|
|
"MultiAgentEnv",
|
|
]
|