-
Notifications
You must be signed in to change notification settings - Fork 2
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
168 expected penalties are applied to grade after extra credit points are added #173
Conversation
Also improve readability of the code with named constants
…e itself dynamically
@19mdavenport See my comment to Paul above. Maybe would you help me run the code in order to test it on submissions? |
private GradingSettings getGradingSettings() { | ||
// FIXME! Import from some dynamic location | ||
return new GradingSettings( | ||
5, | ||
10, | ||
10 | ||
); | ||
} |
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 like the future prep here 💯
Sorry, I created some conflicts between this and |
That's fine, I'll tackle it. Thanks for letting me know. |
The underlying issue has already been resolved by #263. If we want to preserve any of the other ideas from this PR, they'll come from a new one. |
This closes #168.
It also begins to put some of the key functionality in place for #156 via a
GradingSettings
record.While I have confirmed that this code compiles, I'm not sure how to run it on submissions to verify that the results are correct. Please do that, or help me figure out how to.