Skip to content

Commit 5ce7fa9

Browse files
Inlined the message send
1 parent 0b454d0 commit 5ce7fa9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Math-Matrix/PMQRDecomposition.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ PMQRDecomposition >> decompose [
2424
| identityMatrix q r householderVector i |
2525
r := self initialRMatrix.
2626
q := self initialQMatrix.
27-
identityMatrix := self initialQMatrix.
27+
identityMatrix := PMSymmetricMatrix identity: colSize.
2828
1 to: self numberOfColumns do: [ :col |
2929
householderVector := ((r columnAt: col) copyFrom: col to: colSize)
3030
householder.

0 commit comments

Comments
 (0)