Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 01d1d33

Browse files
committedDec 18, 2024·
fixed #3601
1 parent a922588 commit 01d1d33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎M2/Macaulay2/packages/gfanInterface.m2

+1-1
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ gfanConvertToNewRing (PolynomialRing) := R1 -> (
754754
R1Gens := gens R1;
755755
numDigits := length (toString (#R1Gens));
756756
R2 := (coefficientRing R1) new Array from (for i in 1..#R1Gens list (
757-
value ("x" | demark ("",for i from 1 to numDigits-(length toString i) list "0") | toString i)
757+
value ("local x" | demark ("",for i from 1 to numDigits-(length toString i) list "0") | toString i)
758758
) );
759759
R2Gens := gens R2;
760760
generatorMapping := for i in 0..#(gens R1) - 1 list (R1Gens#i =>R2Gens#i);

0 commit comments

Comments
 (0)
Please sign in to comment.