sawcordwell / pymdptoolbox

Markov Decision Process (MDP) Toolbox for Python
BSD 3-Clause "New" or "Revised" License
518 stars 252 forks source link

skip_check #20

Open dlamghariidrissi opened 6 years ago

dlamghariidrissi commented 6 years ago

I'm using the backward induction (Finite Horizon). When I put this fh = mdptoolbox.mdp.FiniteHorizon(P, R, d, T, skip_check=True) in my code, I get the following error:

TypeError: init() got an unexpected keyword argument 'skip_check'

Is it a bug or am I not skipping the check the right way?

Thanks