Resolved the bug related to valid_value generation in constrained parameters for IS-12/14 (MS-05)#893
Open
lo-simon wants to merge 1 commit intoAMWA-TV:masterfrom
Open
Resolved the bug related to valid_value generation in constrained parameters for IS-12/14 (MS-05)#893lo-simon wants to merge 1 commit intoAMWA-TV:masterfrom
lo-simon wants to merge 1 commit intoAMWA-TV:masterfrom
Conversation
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.
The current logic for calculating
valid_valuehas a mathematical flaw when dealing with a range that includes zero, especially with signed integers like the NcInt16 (16-bit) range (minimum=-32768, maximum=32767, step=1).value_value = floor(((maximum -minimum) /2) + minimum) / step) * step + mimimumOriginal formula (buggy)
Because the formula adds the minimum back at the very end, after already adding it inside the parentheses, that effectively doubles-counts the offset. In this specific case, the
valid_valueit generates is actually outside the allowed range (less than -32768).Corrected Calculation
To find a valid midpoint that respects the step and stays within bounds, calculate the midpoint of the span, then align it with the step, starting from the minimum.
value_value = floor(((maximum - minimum) / 2) / step) * step + minimumThis result (-1) is perfectly valid and sits right in the middle of the range.