-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix type in feature_length #192
Conversation
your latest commit didn't pass all test sets (red cross next to your commit). This was due to some Core modifications of the direct dependencies ReinforcementLearning.jl, that uses the function The random number generator also changed a bit between Julia v1.6 and v1.7, Ialso added new test sets to handle both cases. |
feature_length(::Type{<:FeaturizedStateRepresentation{DefaultFeaturization, TS}}) where TS <: DefaultTrajectoryState = 3 | ||
feature_length(::Type{<:FeaturizedStateRepresentation{DefaultFeaturization, TS}}) where TS = 3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I finally removed the rapid fix that we proposed yesterday. There was initially no reason to specify the parametric type TS
, the error we encountered before could have been the result of an uncanny artifact due to conflict between updated dependencies and our older Julia v1.6...
All problems have been fixed. |
First pull request by Marco as test, just to fix a minor bug