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

Commit

Permalink
Trac #32921: deactivate minimization for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Lipnik committed Jan 12, 2022
1 parent 60f7602 commit 49363c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/combinat/k_regular_sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -2468,7 +2468,7 @@ def entry(i, kk):
current_row = 0
for i in inhomogeneities.keys():
for b in srange(lower, upper + 1):
S_b = inhomogeneities[i].subsequence(1, b)
S_b = inhomogeneities[i].subsequence(1, b, minimize=False)
shifted_inhomogeneities.update({(i, b): (S_b, current_row)})
current_row += S_b.mu[0].ncols()

Expand Down Expand Up @@ -2612,7 +2612,7 @@ def right(self, recurrence_rules):
uu = recurrence_rules.uu
lower = floor(ll/k**M)
upper = floor((k**(M-1) - k**m + uu)/k**M)
shifted_inhomogeneities = [S.subsequence(1, b)
shifted_inhomogeneities = [S.subsequence(1, b, minimize=False)
for S in inhomogeneities.values()
for b in srange(lower, upper + 1)]
right = vector(chain(right, *[S.right for S in shifted_inhomogeneities]))
Expand Down

0 comments on commit 49363c7

Please sign in to comment.