Skip to content
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

Fraction eval method should return Real MathObject not perl real #1208

Merged
merged 4 commits into from
Mar 24, 2025

Conversation

dpvc
Copy link
Member

@dpvc dpvc commented Mar 8, 2025

This PR corrects an error where the eval() method of a Fraction MathObject would return a perl real rather than a MathObject Real. That lead to comparisons that didn't use the fuzzy tolerances, which in turn lead to values that differ by small round-off errors being considered not equal when they should be equal. E.g., Fraction(-25,3) not equaling (8/3)*(-2)-3.

This also changes the compare() method to use a better comparison for fractions, and a more precise tolerance value for comparing a fraction and a real, given by the new fractionTolerance flag. Comparisons between a fraction and anything other than a fraction, real, or infinity will produce error messages.

This resolves issue #1204 without making it too easy to use a decimal value to match a fraction.

@dpvc dpvc added the MathObject issue Issue involving MathObects code label Mar 8, 2025
Comment on lines 213 to 214
reals. The default is 10E-10, meaning the decimal must match to
roughly 10 digits.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you mean 1E-10 here. In the code you use 10**-10 which is equal to 1E-10. Furthermore, that would actually mean roughly 10 digits of accuracy, while 10E-10 only means roughly 9 digits of accuracy.

Not that you don't know that. Probably just a typo, or mental conversion error from the ** notation to the E notation.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I made a lot minute change from 10**-10, which just didn't look good with the two 10s and negative sign, and didn't change it correctly. I will fix.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another minor typo, not from this PR is on line 50 of contextFraction.pl. LimiteFraction. Since you have this open, instead of making another PR.

@Alex-Jordan
Copy link
Contributor

I went to try this out and something strange is happening (even before I check this out).

  • On my production server (which is basically develop from January with a few patches) the MWE still shows the bug.
  • On my develop server (a clean up-to-date) I can't actually reproduce the bug.

More out of curiosity that anything else, could this be explained by my perl version? On that develop server the perl version is 5.26, but on my production it's 5.36.

@Alex-Jordan
Copy link
Contributor

At last week's developer meeting, it seemed like two or three (@drgrice1, @pstaabp, @dlglin) could confirm this worked. I had trouble since I couldn't reproduce the actual bug (that I reported!). But do we have enough to merge this?

Copy link
Member

@drgrice1 drgrice1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is good.

@dpvc
Copy link
Member Author

dpvc commented Mar 18, 2025

I think there is a POD typo that I still need to fix. Sorry. Will get to that soon.

@dpvc
Copy link
Member Author

dpvc commented Mar 18, 2025

OOPS, looks like I already did that. Sorry, I thought I hadn't. I think you are good to go.

@drgrice1
Copy link
Member

I noticed your edit to PGalias.pm that you just removed. You can leave that in if you want. There is no problem with that being there. It does make the seed consistent with the other variables. I assume you have a local script that you test things with that doesn't set the seed, and that is why you added that.

@dpvc
Copy link
Member Author

dpvc commented Mar 20, 2025

Indeed, you are correct about the reason. Ok, I can undo the last commit. It is a bit of a pain to remember not to add that file in when making changes, and you can see that I forgot this time. I only noticed it because I was changing branches and didn't see that file in my modified list, and wondered where it went. Then I found it in that previous commit.

I'm happy to have it merged into develop, so I'll put it back.

@dpvc dpvc force-pushed the fix-fraction-eval branch from e9655ad to 64d32e7 Compare March 20, 2025 13:14
@Alex-Jordan Alex-Jordan merged commit 9bf3479 into openwebwork:develop Mar 24, 2025
6 checks passed
drgrice1 added a commit to drgrice1/pg that referenced this pull request Mar 27, 2025
If an infinity is the left operand and a `Fraction` the right operand of
an inequality operator, then the operator is returning the wrong thing.
This is caused by the change in openwebwork#1208 failing to account for the op
order flag when a fraction is compared to an infinity.

For example if `$a = Compute('5 / 3')` (in the `Fraction` context),
`$posInf = Compute('-inf')`, and `$negInf = Compute('inf')`, then

`$posInf < $a` is true,
`$posInf > $a` is false,
`$negInf < $a` is false, and
`$negInf > $a` is true.

All of which are exactly the opposite of the correct result.

However,

`$a < $posInf` is true,
`$a > $posInf` is false,
`$a < $negInf` is false, and
`$a > $negInf` is true

as is expected.

The problem is that since the op order flag is not accounted for, the
first four comparisons are really returning the result of the latter
four comparisons.

With this pull request all of the above comparisons are correct.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
MathObject issue Issue involving MathObects code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants