Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fix one detail
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Jul 14, 2022
1 parent f2b44c5 commit 4950d2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/rings/localization.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
sage: u = [u0, u1, u2]
sage: S = Set(u)
sage: I = S.cartesian_product(S)
sage: add_units = u + [q, q+1] + [ui -uj for ui, uj in I if ui != uj]
....: + [q*ui -uj for ui, uj in I if ui != uj]
sage: add_units = u + [q, q + 1] + [ui - uj for ui, uj in I if ui != uj]
sage: add_units += [q*ui - uj for ui, uj in I if ui != uj]
sage: L = R.localization(tuple(add_units)); L
Multivariate Polynomial Ring in u0, u1, u2, q over Integer Ring localized at
(q, q + 1, u2, u1, u1 - u2, u0, u0 - u2, u0 - u1, u2*q - u1, u2*q - u0,
Expand Down

0 comments on commit 4950d2b

Please sign in to comment.