Skip to content

Commit ddf173f

Browse files
committed
change variable name
1 parent 9f087d9 commit ddf173f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Math-Matrix/PMMatrix.class.st

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ PMMatrix class >> lupCRLCriticalDimension [
102102
]
103103

104104
{ #category : #'instance creation' }
105-
PMMatrix class >> new: anInteger [
105+
PMMatrix class >> new: dimension [
106106
"Create an empty square matrix of dimension anInteger."
107107

108-
^ self new initializeSquare: anInteger
108+
^ self new initializeSquare: dimension
109109
]
110110

111111
{ #category : #'instance creation' }
@@ -520,9 +520,9 @@ PMMatrix >> initializeRows: rowsInteger columns: columnsInteger [
520520
]
521521

522522
{ #category : #initialization }
523-
PMMatrix >> initializeSquare: anInteger [
523+
PMMatrix >> initializeSquare: dimension [
524524
"Build empty components for a square matrix. No check is made: components are assumed to be orgainized in rows."
525-
^ self initializeRows: anInteger columns: anInteger
525+
^ self initializeRows: dimension columns: dimension
526526
]
527527

528528
{ #category : #operation }

0 commit comments

Comments
 (0)