We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df133b7 commit c2cefc1Copy full SHA for c2cefc1
src/Math-Tests-Matrix/PMQRTest.class.st
@@ -7,14 +7,14 @@ Class {
7
{ #category : #running }
8
PMQRTest >> mpTestFunction: aMatrix [
9
10
- | inverse mult identityMatrix |
+ | inverse identityMatrix |
11
inverse := aMatrix mpInverse.
12
identityMatrix := inverse * aMatrix.
13
self assert: (aMatrix * identityMatrix closeTo: aMatrix).
14
self assert: identityMatrix * inverse closeTo: inverse.
15
self assert: identityMatrix transpose closeTo: identityMatrix.
16
- mult := aMatrix * inverse.
17
- self assert: mult transpose closeTo: mult
+ identityMatrix := aMatrix * inverse.
+ self assert: identityMatrix transpose closeTo: identityMatrix
18
]
19
20
{ #category : #tests }
0 commit comments