Skip to content

Commit fc2a331

Browse files
Merge pull request #285 from SergeStinckwich/master
Reclassification of class methods in PMMatrix and PMSymmetricMatrix
2 parents ff7366e + 9055849 commit fc2a331

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Math-Matrix/PMMatrix.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ PMMatrix class >> rows: nRows columns: nCols element: fillElement [
145145

146146
]
147147

148-
{ #category : #'as yet unclassified' }
148+
{ #category : #'instance creation' }
149149
PMMatrix class >> rows: aNumberOfRows columns: aNumberOfColumns random: aMaxNumber [
150150
"Answer a new Matrix of the given dimensions filled with random numbers"
151151
| random rows |

src/Math-Matrix/PMSymmetricMatrix.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ aBlock value: RowposRespectivelyColpos value: ColposRespectivelyRowpos"
5555
^a
5656
]
5757

58-
{ #category : #'as yet unclassified' }
58+
{ #category : #'instance creation' }
5959
PMSymmetricMatrix class >> new: dim random: aMaxNumber [
6060
"Answer a new symmetric matrix of the given dimensions filled with random numbers"
6161
| matrix random aRow |
@@ -75,7 +75,7 @@ PMSymmetricMatrix class >> new: dim random: aMaxNumber [
7575
^ matrix
7676
]
7777

78-
{ #category : #'as yet unclassified' }
78+
{ #category : #'instance creation' }
7979
PMSymmetricMatrix class >> rows: rows columns: columns random: aMaxNumber [
8080
^ self shouldNotImplement
8181
]

0 commit comments

Comments
 (0)