From b40933f3ae134438fcd970133f7f95c9b35ed930 Mon Sep 17 00:00:00 2001 From: "felixlotter@gmail.com" Date: Sun, 15 Dec 2024 18:59:15 +0100 Subject: [PATCH] fixed #3600 --- M2/Macaulay2/packages/gfanInterface.m2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/M2/Macaulay2/packages/gfanInterface.m2 b/M2/Macaulay2/packages/gfanInterface.m2 index 7751a03df25..83432c907b7 100644 --- a/M2/Macaulay2/packages/gfanInterface.m2 +++ b/M2/Macaulay2/packages/gfanInterface.m2 @@ -753,7 +753,7 @@ gfanConvertToNewRing (PolynomialRing) := R1 -> ( --produced by this method. R1Gens := gens R1; numDigits := length (toString (#R1Gens)); - R2 := (coefficientRing R1) (for i in 1..#R1Gens list ( + R2 := (coefficientRing R1) new Array from (for i in 1..#R1Gens list ( value ("x" | demark ("",for i from 1 to numDigits-(length toString i) list "0") | toString i) ) ); R2Gens := gens R2;