-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
Extend IG with reward modes, make terms uniform across IG and BPD #57
Conversation
sections, | ||
capacity, | ||
type_distribution, | ||
position_distribution, | ||
render_mode, | ||
) | ||
self.reward_scheme = reward_scheme | ||
if reward_mode not in ["individual", "team"]: | ||
self.reward_mode = "individual" |
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.
Why don't we throw an exception in that case?
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.
Changed in the meantime to throw a warning and fall back on the individual setting.
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.
A few comments otherwise LGTM :-)
Extend IG with reward modes, correct descriptions, make terms uniform across IG and BPD (reward mode instead of scheme, individual/team instead of local/global).