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

Fix random test failures in number_field_element_quadratic #37306

Merged
merged 2 commits into from
Feb 25, 2024

Conversation

grhkm21
Copy link
Contributor

@grhkm21 grhkm21 commented Feb 12, 2024

Fix #37296.

Add warnings.filterwarnings to ignore DeprecationWarning in the failing doctest, since it is an unrelated issue and does not affect correctness of the test.

To be more specific, the warning only appears when the rounding error will change, i.e. on $n + \frac{1}{2}$ (I believe). Here are some runs:

sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
<ipython-input-12-179149e36f01>:1: DeprecationWarning: the default rounding for rationals, currently `away`, will be changed to `even`.
See https://github.com/sagemath/sage/issues/35473 for details.
  a = QQ.random_element(Integer(3), Integer(3)); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
<ipython-input-14-179149e36f01>:1: DeprecationWarning: the default rounding for rationals, currently `away`, will be changed to `even`.
See https://github.com/sagemath/sage/issues/35473 for details.
  a = QQ.random_element(Integer(3), Integer(3)); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)

This is a "correct" fix because the `DeprecationWarning` is unrelated to
the test.
@grhkm21 grhkm21 changed the title Fix #37296 Fix #37296 Random test failures in number_field _element_quadratic Feb 12, 2024
Copy link

Documentation preview for this PR (built with commit fdc7fd7; changes) is ready! 🎉

Copy link
Contributor

@S17A05 S17A05 left a comment

Choose a reason for hiding this comment

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

LGTM.

@grhkm21
Copy link
Contributor Author

grhkm21 commented Feb 13, 2024

Thanks!

@grhkm21 grhkm21 changed the title Fix #37296 Random test failures in number_field _element_quadratic Fix random test failures in number_field _element_quadratic Feb 13, 2024
@grhkm21 grhkm21 changed the title Fix random test failures in number_field _element_quadratic Fix random test failures in number_field_element_quadratic Feb 13, 2024
vbraun pushed a commit to vbraun/sage that referenced this pull request Feb 18, 2024
…uadratic`

    
Fix sagemath#37296.

Add `warnings.filterwarnings` to ignore `DeprecationWarning` in the
failing doctest, since it is an unrelated issue and does not affect
correctness of the test.

To be more specific, the warning only appears when the rounding error
will change, i.e. on $n + \frac{1}{2}$ (I believe). Here are some runs:

```python
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
<ipython-input-12-179149e36f01>:1: DeprecationWarning: the default
rounding for rationals, currently `away`, will be changed to `even`.
See sagemath#35473 for details.
  a = QQ.random_element(Integer(3), Integer(3)); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
<ipython-input-14-179149e36f01>:1: DeprecationWarning: the default
rounding for rationals, currently `away`, will be changed to `even`.
See sagemath#35473 for details.
  a = QQ.random_element(Integer(3), Integer(3)); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
```
    
URL: sagemath#37306
Reported by: grhkm21
Reviewer(s): Sebastian A. Spindler
vbraun pushed a commit to vbraun/sage that referenced this pull request Feb 19, 2024
…uadratic`

    
Fix sagemath#37296.

Add `warnings.filterwarnings` to ignore `DeprecationWarning` in the
failing doctest, since it is an unrelated issue and does not affect
correctness of the test.

To be more specific, the warning only appears when the rounding error
will change, i.e. on $n + \frac{1}{2}$ (I believe). Here are some runs:

```python
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
<ipython-input-12-179149e36f01>:1: DeprecationWarning: the default
rounding for rationals, currently `away`, will be changed to `even`.
See sagemath#35473 for details.
  a = QQ.random_element(Integer(3), Integer(3)); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
<ipython-input-14-179149e36f01>:1: DeprecationWarning: the default
rounding for rationals, currently `away`, will be changed to `even`.
See sagemath#35473 for details.
  a = QQ.random_element(Integer(3), Integer(3)); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
sage: a = QQ.random_element(3, 3); _ = round(a)
```
    
URL: sagemath#37306
Reported by: grhkm21
Reviewer(s): Sebastian A. Spindler
@vbraun vbraun merged commit c3e76e1 into sagemath:develop Feb 25, 2024
24 checks passed
@grhkm21 grhkm21 deleted the grhkm/issue-37296 branch February 25, 2024 16:56
@mkoeppe mkoeppe added this to the sage-10.3 milestone Mar 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Random test failures in number_field_element_quadratic
4 participants