Skip to content

Commit 2d0714e

Browse files
committed
Update some protocols
1 parent fddfac3 commit 2d0714e

File tree

23 files changed

+37
-37
lines changed

23 files changed

+37
-37
lines changed

src/Math-Accuracy-Core/PMAccuracy.class.st

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ PMAccuracy class >> floatAsShortString: aFloat digitCount: digitCount [
100100
^ aStream contents
101101
]
102102

103-
{ #category : #'class initialization' }
103+
{ #category : #initialization }
104104
PMAccuracy class >> initialize [
105105
DecimalPlaces ifNil: [DecimalPlaces :=3]
106106
]
@@ -250,7 +250,7 @@ PMAccuracy >> ifSeveralterations: aBlock [
250250
iterations >1 ifTrue:[ ^aBlock value ]
251251
]
252252

253-
{ #category : #'initialize-release' }
253+
{ #category : #initialization }
254254
PMAccuracy >> initRest: aName [
255255
| initializationMessage |
256256
initializationMessage := ('initialize' , aName) asSymbol.
@@ -259,15 +259,15 @@ PMAccuracy >> initRest: aName [
259259
self perform: initializationMessage
260260
]
261261

262-
{ #category : #'initialize-release' }
262+
{ #category : #initialization }
263263
PMAccuracy >> initSubclassSelectorNames [
264264
names := (self class allSelectorsBelow: Object)
265265
select: [ :selectorName | selectorName beginsWith: #check ]
266266
thenCollect: [ :selectorName | selectorName copyFrom: 6 to: selectorName size ].
267267
names := names asArray sort
268268
]
269269

270-
{ #category : #'initialize-release' }
270+
{ #category : #initialization }
271271
PMAccuracy >> initialize [
272272
parameters := Dictionary new.
273273
arguments := Dictionary new.

src/Math-Accuracy-ODE/PMODEAccuracy.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ PMODEAccuracy >> checkRungeKutta [
139139
stepperClass: PMRungeKuttaStepper
140140
]
141141

142-
{ #category : #utils }
142+
{ #category : #utilities }
143143
PMODEAccuracy >> checkSolverClass: solverClass systemClass: systemClass stepperClass: stepperClass [
144144
| solver stepper system |
145145
system := systemClass block: function.

src/Math-ArbitraryPrecisionFloat/PMArbitraryPrecisionFloat.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ PMArbitraryPrecisionFloat >> mantissa [
964964
^mantissa
965965
]
966966

967-
{ #category : #'initialize-release' }
967+
{ #category : #initialization }
968968
PMArbitraryPrecisionFloat >> mantissa: m exponent: e nBits: n [
969969
mantissa := m.
970970
biasedExponent := e.
@@ -1525,7 +1525,7 @@ PMArbitraryPrecisionFloat >> round [
15251525
self truncate
15261526
]
15271527

1528-
{ #category : #'initialize-release' }
1528+
{ #category : #initialization }
15291529
PMArbitraryPrecisionFloat >> setPrecisionTo: n [
15301530
nBits := n.
15311531
self round

src/Math-AutomaticDifferenciation/PMDualNumber.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ PMDualNumber >> < aDualNumber [
7171
^ value < aDualNumber value
7272
]
7373

74-
{ #category : #testing }
74+
{ #category : #comparing }
7575
PMDualNumber >> = aMagnitude [
7676
^ aMagnitude = value
7777
]

src/Math-Benchmarks-KDTree/PMKDTreeBenchmark.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ PMKDTreeBenchmark >> collType: aSequencableCollectionClass [
105105
^ collType := aSequencableCollectionClass
106106
]
107107

108-
{ #category : #'initialize-release' }
108+
{ #category : #initialization }
109109
PMKDTreeBenchmark >> initialize [
110110
super initialize.
111111
collType := Float32Array.

src/Math-Core-Process/PMFixpoint.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Class {
2424
#category : #'Math-Core-Process'
2525
}
2626

27-
{ #category : #'instance-creation' }
27+
{ #category : #'instance creation' }
2828
PMFixpoint class >> block: aBlock value: anObject [
2929
^self new block: aBlock ;value: anObject; yourself
3030
]

src/Math-Distributions/PMProbabilityDensity.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ PMProbabilityDensity >> flatGenerator: aGenerator [
8282
flatGenerator := aGenerator
8383
]
8484

85-
{ #category : #initialize }
85+
{ #category : #initialization }
8686
PMProbabilityDensity >> initialize [
8787

8888
super initialize.

src/Math-FunctionFit/PMAnotherChromosomeManager.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Class {
1616
#category : #'Math-FunctionFit'
1717
}
1818

19-
{ #category : #utils }
19+
{ #category : #utilities }
2020
PMAnotherChromosomeManager class >> integerDigitsFor: anInteger base: aBase [
2121
| n integer next result |
2222
"n:=(anInteger ln / aBase ln) floor ." "does not always work because of floating point errors. next 2 lines are better"
@@ -32,7 +32,7 @@ PMAnotherChromosomeManager class >> integerDigitsFor: anInteger base: aBase [
3232
^result
3333
]
3434

35-
{ #category : #utils }
35+
{ #category : #utilities }
3636
PMAnotherChromosomeManager class >> numberOfHamersleyPoints: n dimension: d randomized: aBoolean [
3737
"a bit randomized "
3838
| dist randomNumberGenerator |

src/Math-FunctionFit/PMGAAccuracy.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ PMGAAccuracy >> fast: aBoolean [
151151
fast := aBoolean
152152
]
153153

154-
{ #category : #'initialize-release' }
154+
{ #category : #initialization }
155155
PMGAAccuracy >> initialize [
156156
super initialize.
157157
fast :=false.

src/Math-Numerical/PMNewtonZeroFinder.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ PMNewtonZeroFinder >> initialValue: aNumber [
9292
result := aNumber
9393
]
9494

95-
{ #category : #'as yet unclassified' }
95+
{ #category : #initialization }
9696
PMNewtonZeroFinder >> initialize [
9797
"Initialize lineSearchFunction and lineSearch: it depends on other variables only indirectly,
9898
can be initialized once at the begining"

0 commit comments

Comments
 (0)