Skip to content

Commit

Permalink
sagemathgh-38765: Fix time limitation in magma_free docstring
Browse files Browse the repository at this point in the history
    
<!-- v Describe your changes below in detail. -->
Change time limitation from 20 to 120 in the documentation of
magma_free.
<!-- v Why is this change required? What problem does it solve? -->

> Calculations are restricted to 120 seconds.
http://magma.maths.usyd.edu.au/calc/

> <max_time>120</max_time>
http://magma.maths.usyd.edu.au/xml/calculator.xml?input=Factorization(15
)


<!-- v If this PR resolves an open issue, please link to it here. For
example, "Fixes sagemath#12345". -->



### 📝 Checklist

<!-- Put an `x` in all the boxes that apply. -->

- [x] The title is concise and informative.
- [x] The description explains in detail what this PR is about.
- [ ] I have linked a relevant issue or discussion.
- [ ] I have created tests covering the changes.
- [ ] I have updated the documentation and checked the documentation
preview.

### ⌛ Dependencies

<!-- List all open PRs that this PR logically depends on. For example,
-->
<!-- - sagemath#12345: short description why this is a dependency -->
<!-- - sagemath#34567: ... -->
    
URL: sagemath#38765
Reported by: Eloi Torrents
Reviewer(s): Travis Scrimshaw, Vincent Macri
  • Loading branch information
Release Manager committed Oct 8, 2024
2 parents 67ec665 + 0d9a010 commit 399faf8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/sage/interfaces/magma_free.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ def magma_free_eval(code, strip=True, columns=0):
Use the free online MAGMA calculator to evaluate the given
input code and return the answer as a string.
LIMITATIONS: The code must evaluate in at most 20 seconds
and there is a limitation on the amount of RAM.
.. WARNING::
The code must evaluate in at most 120 seconds
and there is a limitation on the amount of RAM.
EXAMPLES::
Expand Down

0 comments on commit 399faf8

Please sign in to comment.