Skip to content

Commit 67562fb

Browse files
committed
consequently rename to linear_combination
1 parent 1b118be commit 67562fb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/sage/combinat/k_regular_sequence.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,13 +1327,13 @@ def include(t, r):
13271327
for s_L in srange(k):
13281328
r_L = k**t_R * s_L + r_R
13291329
try:
1330-
solution = find_linear_combination(t_L, r_L, lines)
1330+
linear_combination = find_linear_combination(t_L, r_L, lines)
13311331
except NoLinearCombination:
13321332
include(t_L, r_L) # entries (t, r) --> k**t * m + r
1333-
solution = (len(lines)-1)*(zero,) + (one,)
1333+
linear_combination = (len(lines)-1)*(zero,) + (one,)
13341334
logger.debug('M_%s: f_{%s*m+%s} = %s * X_m',
1335-
s_L, k**t_L, r_L, solution)
1336-
mu[s_L].append(solution)
1335+
s_L, k**t_L, r_L, linear_combination)
1336+
mu[s_L].append(linear_combination)
13371337

13381338
d = len(seq(0)) + len(lines)
13391339
mu = tuple(Matrix(domain, [pad_right(tuple(row), d, zero=zero) for row in M])

0 commit comments

Comments
 (0)