We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
player_id
Env.observe
While this feature is rarely used, it makes the implementation complicated.
Optional
=None
playerd_id is not None
v3.0.0
import jax import warnings @jax.jit def func(x=None): if x is not None: warnings.warn("This feature is deprecated", DeprecationWarning) return x if __name__ == "__main__": print(func(3)) print(func(2)) print(func(4)) print(func(5))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While this feature is rarely used, it makes the implementation complicated.
Optional
and=None
as default, thenplayerd_id is not None
is deprecated)v3.0.0
The text was updated successfully, but these errors were encountered: