Skip to content

Commit

Permalink
don't test for inferrence in GenerativeBeliefMDP in Julia 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zsunberg committed Sep 20, 2019
1 parent 56c6cdb commit 44cf4cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ os:

julia:
- 1.0
- 1

notifications:
email: false
Expand Down
4 changes: 3 additions & 1 deletion test/test_generative_belief_mdp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ let

bmdp = GenerativeBeliefMDP(pomdp, up)
b = initialstate(bmdp, Random.GLOBAL_RNG)
@inferred generate_sr(bmdp, b, true, MersenneTwister(4))
if VERSION >= v"1.1"
@inferred generate_sr(bmdp, b, true, MersenneTwister(4))
end
end

0 comments on commit 44cf4cd

Please sign in to comment.