Skip to content

Commit 8905a34

Browse files
committed
Merge distribution Kalmogorov smirnof
1 parent fd072e4 commit 8905a34

File tree

11 files changed

+18
-17
lines changed

11 files changed

+18
-17
lines changed

src/BaselineOfPolyMath/BaselineOfPolyMath.class.st

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ BaselineOfPolyMath >> baseline: spec [
4545
package: 'Math-Complex'
4646
with: [ spec requires: #('Math-Numerical' 'Math-Polynomials') ];
4747
package: 'Math-Helpers';
48-
package: 'Math-Distributions' with: [ spec requires: #('PolyMathDataStructures') ];
48+
package: 'Math-Distributions' with: [ spec requires: #('PolyMathDataStructures' 'Math-Numerical' 'Math-Polynomials') ];
4949
package: 'Math-Core-Process' with: [ spec requires: #('Math-Helpers') ];
5050
package: 'Math-Numerical' with: [ spec requires: #('PolyMathDataStructures' 'Math-Helpers' 'Math-Core-Process' 'Math-Distributions' 'Math-StatisticalMoments' 'Math-Series') ];
5151
package: 'Math-Polynomials' with: [ spec requires: #('PolyMathDataStructures' 'Math-Helpers' 'Math-Core-Process' 'Math-Distributions' 'Math-StatisticalMoments' 'Math-Series') ];
@@ -57,8 +57,6 @@ BaselineOfPolyMath >> baseline: spec [
5757
#('Math-Numerical' 'Math-Chromosome' 'Math-Accuracy-Core' 'PolyMathDataStructures' 'Math-Helpers' 'Math-Polynomials') ];
5858
package: 'Math-KDTree';
5959
package: 'Math-KernelSmoothing' with: [ spec requires: #('Math-Quantile' 'Math-Numerical' 'Math-Polynomials') ];
60-
package: 'Math-KolmogorovSmirnov'
61-
with: [ spec requires: #('Math-Numerical' 'Math-Polynomials') ];
6260
package: 'Math-Number-Extensions';
6361
package: 'Math-ODE' with: [ spec requires: #('Math-Numerical' 'PolyMathDataStructures' 'Math-Polynomials') ];
6462
package: 'Math-Permutation' with: [ spec requires: #('PolyMathDataStructures' 'Math-Core-Process') ];
@@ -94,9 +92,6 @@ BaselineOfPolyMath >> baseline: spec [
9492
with: [ spec requires: #('Math-KDTree') ];
9593
package: 'Math-Tests-KernelSmoothing'
9694
with: [ spec requires: #('Math-KernelSmoothing') ];
97-
package: 'Math-Tests-KolmogorovSmirnov'
98-
with: [ spec
99-
requires: #('Math-Numerical' 'Math-KolmogorovSmirnov' 'Math-Polynomials') ];
10095
package: 'Math-Tests-Number-Extensions'
10196
with: [ spec requires: #('Math-Number-Extensions') ];
10297
package: 'Math-Tests-ODE' with: [ spec requires: #('Math-ODE') ];
@@ -125,10 +120,10 @@ BaselineOfPolyMath >> baseline: spec [
125120
#('Math-Complex' 'Math-Quaternion' 'Math-Numerical' 'Math-Random' 'Math-KDTree' 'Math-ODE' 'Math-ArbitraryPrecisionFloat' 'Math-FastFourierTransform' 'ExtendedNumberParser' 'Math-Quantile' 'Math-Physics-Constants' 'Math-Polynomials' 'Math-TSNE' 'Math-Core-Process' 'Math-Helpers' 'PolyMathDataStructures' 'Math-Distributions');
126121
group: 'Extensions'
127122
with:
128-
#('Math-Clustering' 'Math-Number-Extensions' 'Math-Chromosome' 'Math-PrincipalComponentAnalysis' 'Math-FunctionFit' 'Math-AutomaticDifferenciation' 'Math-KernelSmoothing' 'Math-Permutation' 'Math-KolmogorovSmirnov');
123+
#('Math-Clustering' 'Math-Number-Extensions' 'Math-Chromosome' 'Math-PrincipalComponentAnalysis' 'Math-FunctionFit' 'Math-AutomaticDifferenciation' 'Math-KernelSmoothing' 'Math-Permutation');
129124
group: 'Tests'
130125
with:
131-
#('Math-Tests-Clustering' 'Math-Tests-Numerical' 'Math-Tests-Complex' 'Math-Tests-Quaternion' 'Math-Tests-Random' 'Math-Tests-ODE' 'Math-Tests-KDTree' 'Math-Tests-FunctionFit' 'Math-Tests-AutomaticDifferenciation' 'Math-Tests-FastFourierTransform' 'Math-Tests-Accuracy' 'Math-Tests-ArbitraryPrecisionFloat' 'Math-Tests-KolmogorovSmirnov' 'Math-Tests-Quantile' 'Math-Tests-Polynomials' 'Math-Tests-PrincipalComponentAnalysis' 'Math-Tests-KernelSmoothing' 'Math-Tests-Number-Extensions' 'Math-Tests-Permutation' 'Math-Tests-TSNE' 'Math-Tests-Core-Process' 'Math-Tests-Distributions');
126+
#('Math-Tests-Clustering' 'Math-Tests-Numerical' 'Math-Tests-Complex' 'Math-Tests-Quaternion' 'Math-Tests-Random' 'Math-Tests-ODE' 'Math-Tests-KDTree' 'Math-Tests-FunctionFit' 'Math-Tests-AutomaticDifferenciation' 'Math-Tests-FastFourierTransform' 'Math-Tests-Accuracy' 'Math-Tests-ArbitraryPrecisionFloat' 'Math-Tests-Quantile' 'Math-Tests-Polynomials' 'Math-Tests-PrincipalComponentAnalysis' 'Math-Tests-KernelSmoothing' 'Math-Tests-Number-Extensions' 'Math-Tests-Permutation' 'Math-Tests-TSNE' 'Math-Tests-Core-Process' 'Math-Tests-Distributions');
132127
group: 'default'
133128
with: #('Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy') ].
134129

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
"
2+
Please describe the package using the class comment of the included manifest class. The manifest class also includes other additional metadata for the package. These meta data are used by other tools such as the SmalllintManifestChecker and the critics Browser
3+
"
4+
Class {
5+
#name : #ManifestMathDistributions,
6+
#superclass : #PackageManifest,
7+
#category : #'Math-Distributions-Manifest'
8+
}

src/Math-KolmogorovSmirnov/PMKolmogorovsDistribution.class.st renamed to src/Math-Distributions/PMKolmogorovsDistribution.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Class {
1212
'distribution',
1313
'n'
1414
],
15-
#category : #'Math-KolmogorovSmirnov'
15+
#category : #'Math-Distributions-KolmogorovSmirnov'
1616
}
1717

1818
{ #category : #information }

src/Math-KolmogorovSmirnov/package.st

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/Math-KolmogorovSmirnov/PMKolmogorovSmirnov1Sample.class.st renamed to src/Math-Tests-Distributions/PMKolmogorovSmirnov1Sample.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Class {
1919
'distribution',
2020
'popDistribution'
2121
],
22-
#category : #'Math-KolmogorovSmirnov'
22+
#category : #'Math-Tests-Distributions-KolmogorovSmirnov'
2323
}
2424

2525
{ #category : #'instance creation' }

src/Math-Tests-KolmogorovSmirnov/PMKolmogorovSmirnov1SampleTest.class.st renamed to src/Math-Tests-Distributions/PMKolmogorovSmirnov1SampleTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Class {
55
'distribution',
66
'test'
77
],
8-
#category : #'Math-Tests-KolmogorovSmirnov'
8+
#category : #'Math-Tests-Distributions-KolmogorovSmirnov'
99
}
1010

1111
{ #category : #running }

src/Math-KolmogorovSmirnov/PMKolmogorovSmirnov2Sample.class.st renamed to src/Math-Tests-Distributions/PMKolmogorovSmirnov2Sample.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Class {
2929
'bigSize',
3030
'ksStatistic'
3131
],
32-
#category : #'Math-KolmogorovSmirnov'
32+
#category : #'Math-Tests-Distributions-KolmogorovSmirnov'
3333
}
3434

3535
{ #category : #'instance creation' }

src/Math-Tests-KolmogorovSmirnov/PMKolmogorovSmirnov2SampleTest.class.st renamed to src/Math-Tests-Distributions/PMKolmogorovSmirnov2SampleTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Class {
44
#instVars : [
55
'k'
66
],
7-
#category : #'Math-Tests-KolmogorovSmirnov'
7+
#category : #'Math-Tests-Distributions-KolmogorovSmirnov'
88
}
99

1010
{ #category : #running }

src/Math-KolmogorovSmirnov/PMKolmogorovSmirnovSample.class.st renamed to src/Math-Tests-Distributions/PMKolmogorovSmirnovSample.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Class {
88
'data',
99
'compareWith'
1010
],
11-
#category : #'Math-KolmogorovSmirnov'
11+
#category : #'Math-Tests-Distributions-KolmogorovSmirnov'
1212
}
1313

1414
{ #category : #accessing }

src/Math-Tests-KolmogorovSmirnov/PMKolmogorovsDistributionTest.class.st renamed to src/Math-Tests-Distributions/PMKolmogorovsDistributionTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ data are taken from: http://www.ism.ac.jp/editsec/aism/pdf/054_3_0577.pdf
44
Class {
55
#name : #PMKolmogorovsDistributionTest,
66
#superclass : #TestCase,
7-
#category : #'Math-Tests-KolmogorovSmirnov'
7+
#category : #'Math-Tests-Distributions-KolmogorovSmirnov'
88
}
99

1010
{ #category : #tests }

0 commit comments

Comments
 (0)