File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments