From 64068552cec9409a2f1d9db2504a81ca812e5f8b Mon Sep 17 00:00:00 2001 From: Eloi Torrents Date: Fri, 4 Oct 2024 16:37:33 +0200 Subject: [PATCH 1/5] Fix time limitation in magma_free docstring --- src/sage/interfaces/magma_free.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sage/interfaces/magma_free.py b/src/sage/interfaces/magma_free.py index 34d5b70f29a..5c747774aab 100644 --- a/src/sage/interfaces/magma_free.py +++ b/src/sage/interfaces/magma_free.py @@ -26,7 +26,7 @@ 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 + LIMITATIONS: The code must evaluate in at most 120 seconds and there is a limitation on the amount of RAM. EXAMPLES:: From d2e479924cef0953f6f2ad03161da50175019140 Mon Sep 17 00:00:00 2001 From: Eloi Torrents Date: Sat, 5 Oct 2024 10:14:00 +0200 Subject: [PATCH 2/5] Update src/sage/interfaces/magma_free.py Co-authored-by: Vincent Macri --- src/sage/interfaces/magma_free.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sage/interfaces/magma_free.py b/src/sage/interfaces/magma_free.py index 5c747774aab..876487349b2 100644 --- a/src/sage/interfaces/magma_free.py +++ b/src/sage/interfaces/magma_free.py @@ -26,7 +26,9 @@ 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 120 seconds + .. WARNING:: + + The code must evaluate in at most 120 seconds and there is a limitation on the amount of RAM. EXAMPLES:: From 884570c6f86c88451ddc4599dd1a64defdef878f Mon Sep 17 00:00:00 2001 From: Eloi Torrents Date: Sat, 5 Oct 2024 10:14:11 +0200 Subject: [PATCH 3/5] Update src/sage/interfaces/magma_free.py Co-authored-by: Vincent Macri --- src/sage/interfaces/magma_free.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sage/interfaces/magma_free.py b/src/sage/interfaces/magma_free.py index 876487349b2..6301786bb80 100644 --- a/src/sage/interfaces/magma_free.py +++ b/src/sage/interfaces/magma_free.py @@ -29,7 +29,7 @@ def magma_free_eval(code, strip=True, columns=0): .. WARNING:: The code must evaluate in at most 120 seconds - and there is a limitation on the amount of RAM. + and there is a limitation on the amount of RAM. EXAMPLES:: From 81e6a22c04d74573817d166d937ba004473b7894 Mon Sep 17 00:00:00 2001 From: Eloi Torrents Date: Mon, 7 Oct 2024 09:32:43 +0200 Subject: [PATCH 4/5] Update src/sage/interfaces/magma_free.py Co-authored-by: Travis Scrimshaw --- src/sage/interfaces/magma_free.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/sage/interfaces/magma_free.py b/src/sage/interfaces/magma_free.py index 6301786bb80..87a02bade02 100644 --- a/src/sage/interfaces/magma_free.py +++ b/src/sage/interfaces/magma_free.py @@ -27,7 +27,6 @@ def magma_free_eval(code, strip=True, columns=0): input code and return the answer as a string. .. WARNING:: - The code must evaluate in at most 120 seconds and there is a limitation on the amount of RAM. From 0d9a010039f64c0edcf50d8e8418b16a20eb6b53 Mon Sep 17 00:00:00 2001 From: Eloi Torrents Date: Mon, 7 Oct 2024 18:11:29 +0200 Subject: [PATCH 5/5] Update src/sage/interfaces/magma_free.py Co-authored-by: Vincent Macri --- src/sage/interfaces/magma_free.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sage/interfaces/magma_free.py b/src/sage/interfaces/magma_free.py index 87a02bade02..5938e9fa4af 100644 --- a/src/sage/interfaces/magma_free.py +++ b/src/sage/interfaces/magma_free.py @@ -27,6 +27,7 @@ def magma_free_eval(code, strip=True, columns=0): input code and return the answer as a string. .. WARNING:: + The code must evaluate in at most 120 seconds and there is a limitation on the amount of RAM.