Skip to content

Commit

Permalink
Newer versions of Singular have moved poly.lib to polylib.lib - fixin…
Browse files Browse the repository at this point in the history
…g import.
  • Loading branch information
GDeLaurentis committed Dec 27, 2023
1 parent 1857875 commit b7346f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions syngular/ideal_algorithms.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def extension(self, U, ordering="lp"):
return I_extended

singular_commands_EXTCONT1 = r"""
LIB "poly.lib";
LIB "polylib.lib";
// K(U)[X \ U]
ring r2 = {r2};
ideal G = {extended_ideal};
Expand Down Expand Up @@ -85,7 +85,7 @@ def extension_contraction_fpoly(self, U, ordering="lp"):
return ['1'] + f_polys_factors

singular_commands_EXTCONT2 = """
LIB "poly.lib";
LIB "polylib.lib";
// option(redSB);
ring r2 = {r2};
ideal G = {extended_ideal};
Expand Down

0 comments on commit b7346f8

Please sign in to comment.