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 c287f90 commit 4fd471aCopy full SHA for 4fd471a
src/Math-Tests-Matrix/PMQRTest.class.st
@@ -58,14 +58,11 @@ PMQRTest >> testMoorePenroseInverseOfProductOfMatrices [
58
]
59
60
{ #category : #tests }
61
-PMQRTest >> testMoorePenroseInverseRepeatedly [
+PMQRTest >> testMoorePenroseInverseOfRandomMatrix [
62
63
| a |
64
- 3 timesRepeat: [
65
- a := PMMatrix rows: 3 columns: 3 random: 1.0.
66
- self assert: (a mpInverse closeTo: a inverse).
67
- a := PMSymmetricMatrix new: 4 random: 1.0.
68
- self assert: (a mpInverse closeTo: a inverse) ]
+ a := PMSymmetricMatrix new: 4 random: 1.0.
+ self assert: (a mpInverse closeTo: a inverse)
69
70
71
0 commit comments