-
Notifications
You must be signed in to change notification settings - Fork 20
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
Remove granularity #209
Remove granularity #209
Conversation
With `granularity` new drones are requested when `demand>supply+granularity`. Remove granularity in Standardiser to enable the creation of new drones when `demand>supply`. I think that is more intuitive and solves problems as discussed in [Fix stepwise controller documentation](MatterMiners/cobald#93).
@mschnepf: Could you fix unittests and code style, please? |
How many drones are requested if:
if the drone With using |
Oh. Yes, I will fix it. In both cases, it requests only one additional drone. Without |
I would like to understand the underlying problem, so stick with me for some questions 😁 |
Codecov Report
@@ Coverage Diff @@
## master #209 +/- ##
=======================================
Coverage 99.55% 99.55%
=======================================
Files 42 42
Lines 1795 1795
=======================================
Hits 1787 1787
Misses 8 8
Continue to review full report at Codecov.
|
I think that the reason for the use of If the |
I must further try to ask, because I still don't get the real underlying problem. |
The idea of 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.
Lets hope that it does solve the raised issues :)
Great, that you also adapted the error handling 👍
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.
@mschnepf thanks a lot for your contribution. I have no further comments. Looks good to me!
With
granularity
new drones are requested whendemand>supply+granularity
. Remove granularity in Standardiser to enable the creation of new drones whendemand>supply
. I think that is more intuitive and solves problems as discussed in MatterMiners/cobald#93.