Skip to content

Commit c34d9cc

Browse files
Removed an unused local variable.
1 parent 9baa7ba commit c34d9cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Math-Matrix/PMQRDecomposition.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ https://en.wikipedia.org/wiki/QR_decomposition#Using_Householder_reflections
7171
{ #category : #arithmetic }
7272
PMQRDecomposition >> decomposeWithPivot [
7373

74-
| i v vectorOfNormSquareds rank mx pivot matrixOfMinor |
74+
| i vectorOfNormSquareds rank mx pivot matrixOfMinor |
7575
vectorOfNormSquareds := matrixToDecompose columnsCollect: [
7676
:columnVector | columnVector * columnVector ].
7777
mx := vectorOfNormSquareds indexOf: vectorOfNormSquareds max.

0 commit comments

Comments
 (0)