We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b67c77 commit d7e482dCopy full SHA for d7e482d
README.md
@@ -17,12 +17,12 @@ To accomplish this, there are two abstract environment types:
17
18
`AbstractEnv` is a base type for all environments.
19
20
-The interface has four required functions for all `AbstractEnv`s:
+The interface has five required functions for all `AbstractEnv`s:
21
```julia
22
reset!(env) # returns nothing
23
actions(env) # returns the set of all possible actions for the environment
24
observe(env) # returns an observation
25
-act!(env, a) # returns a reward
+act!(env, a) # steps the environment forward and returns a reward
26
terminated(env) # returns true or false indicating whether the environment has finished
27
```
28
0 commit comments