Skip to content

Commit 8315489

Browse files
committed
update
1 parent 6328fe5 commit 8315489

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44

55
deps/gym
66
deps/whichgym
7+
deps/build.log

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## Documentation: http://docs.travis-ci.com/user/languages/julia/
22
language: julia
3+
dist: xenial
34

45
os:
56
- linux

src/env.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,10 @@ function GymEnv(id::String)
1919
end
2020

2121
spec = Spec(gymenv.spec.id,
22-
gymenv.spec.trials,
2322
gymenv.spec.reward_threshold,
2423
gymenv.spec.nondeterministic,
2524
gymenv.spec.tags,
2625
gymenv.spec.max_episode_steps,
27-
gymenv.spec.timestep_limit
2826
)
2927
action_space = julia_space(gymenv.action_space)
3028
observation_space = julia_space(gymenv.observation_space)

src/spec.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
struct Spec
22
id
3-
trials
43
reward_threshold
54
nondeterministic
65
tags
76
max_episode_steps
8-
timestep_limit
97
end

0 commit comments

Comments
 (0)