Fix: If lower bound specified for availability, upper bound should be 1.0#955
Merged
Fix: If lower bound specified for availability, upper bound should be 1.0#955
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #955 +/- ##
=======================================
Coverage 83.86% 83.86%
=======================================
Files 50 50
Lines 5540 5541 +1
Branches 5540 5541 +1
=======================================
+ Hits 4646 4647 +1
Misses 658 658
Partials 236 236 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Member
Author
|
I am wondering whether a "proportion" type that can only have values >=0 and <=1 might be useful for catching problems like this. |
Collaborator
Potentially, not sure how often this would crop up though, whether it's worth the effort... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
I stumbled across this while I was looking something up and it seemed fishy to me.
If you specify a lower bound for a process availability, the upper bound is set to infinity, whereas it should be 100% instead. It would be ok if we had other constraints which prevented activity from exceeding 100%, but we don't. In practice this hasn't proven to be a problem because all the examples only specify upper bounds. Also, the optimiser will generally try to minimise activity anyway, because less activity means lower cost, but we shouldn't rely on this.
Fix by setting the upper limit to 100%.
Type of change
Key checklist
$ cargo test$ cargo docFurther checks