Skip to content

Commit

Permalink
src/sage/numerical/interactive_simplex_method.py: Rephrase comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed May 25, 2024
1 parent 67f9300 commit 2e80f9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/numerical/interactive_simplex_method.py
Original file line number Diff line number Diff line change
Expand Up @@ -3910,8 +3910,8 @@ def __init__(self, A, b, c, objective_value,
c = copy(c)
B = vector(basic_variables)
N = vector(nonbasic_variables)
# Sadly, vector does not guarantee that the result is freshly allocated
# if the input was already a vector: #29101
# Issue #29101: vector does not guarantee that the result is freshly allocated
# if the input was already a vector
if B is basic_variables:
B = copy(B)
if N is nonbasic_variables:
Expand Down

0 comments on commit 2e80f9a

Please sign in to comment.