Skip to content

Commit 009e677

Browse files
Reduced the scope of a temporary variable and made similar code (variable listing) even more similar.
1 parent c34d9cc commit 009e677

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Math-Matrix/PMQRDecomposition.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ that describes the mechanics:
2929
https://en.wikipedia.org/wiki/QR_decomposition#Using_Householder_reflections
3030
"
3131

32-
| i matrixOfMinor householderReflection |
32+
| i matrixOfMinor |
3333
1 to: self numberOfColumns do: [ :col |
34-
| householderVector householderMatrix columnVectorFromRMatrix |
34+
| householderReflection householderMatrix householderVector columnVectorFromRMatrix |
3535
columnVectorFromRMatrix := r columnVectorAt: col size: colSize.
3636
householderReflection := self
3737
householderReflectionOf:

0 commit comments

Comments
 (0)