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

Commit

Permalink
switch to power sum by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mantepse committed Aug 18, 2021
1 parent a9084c6 commit 4b76e93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/rings/lazy_laurent_series_ring.py
Original file line number Diff line number Diff line change
Expand Up @@ -1369,9 +1369,9 @@ def __init__(self, base_ring, names, sparse=True, category=None):
self._sparse = sparse
n = len(self.variable_names())
if n == 1:
self._coeff_ring = SymmetricFunctions(base_ring).m()
self._coeff_ring = SymmetricFunctions(base_ring).p()
else:
self._coeff_ring = tensor([SymmetricFunctions(base_ring).m()]*len(self.variable_names()))
self._coeff_ring = tensor([SymmetricFunctions(base_ring).p()]*len(self.variable_names()))
self._laurent_poly_ring = self._coeff_ring

def _repr_(self):
Expand Down

0 comments on commit 4b76e93

Please sign in to comment.