add isJumping info to dinoState

This commit is contained in:
2020-02-26 17:14:28 +01:00
parent 77898f4e5a
commit cff1a4e531
6 changed files with 15 additions and 14 deletions
@@ -37,5 +37,6 @@ public class EpsilonGreedyPolicy<A extends Enum> implements EpsilonPolicy<A>{
// Take the action with the highest value
return greedyPolicy.chooseAction(actionValues);
}
}
}