Skip to content

Commit c9ce032

Browse files
committed
Merge kernel smoothing
1 parent 4b60540 commit c9ce032

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

src/BaselineOfPolyMath/BaselineOfPolyMath.class.st

Lines changed: 3 additions & 6 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-Quantile') ];
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') ];
@@ -56,7 +56,6 @@ BaselineOfPolyMath >> baseline: spec [
5656
requires:
5757
#('Math-Numerical' 'Math-Chromosome' 'Math-Accuracy-Core' 'PolyMathDataStructures' 'Math-Helpers' 'Math-Polynomials') ];
5858
package: 'Math-KDTree';
59-
package: 'Math-KernelSmoothing' with: [ spec requires: #('Math-Quantile' 'Math-Numerical' 'Math-Polynomials') ];
6059
package: 'Math-Number-Extensions';
6160
package: 'Math-ODE' with: [ spec requires: #('Math-Numerical' 'PolyMathDataStructures' 'Math-Polynomials') ];
6261
package: 'Math-Permutation' with: [ spec requires: #('PolyMathDataStructures' 'Math-Core-Process') ];
@@ -90,8 +89,6 @@ BaselineOfPolyMath >> baseline: spec [
9089
package: 'Math-Tests-FunctionFit';
9190
package: 'Math-Tests-KDTree'
9291
with: [ spec requires: #('Math-KDTree') ];
93-
package: 'Math-Tests-KernelSmoothing'
94-
with: [ spec requires: #('Math-KernelSmoothing') ];
9592
package: 'Math-Tests-Number-Extensions'
9693
with: [ spec requires: #('Math-Number-Extensions') ];
9794
package: 'Math-Tests-ODE' with: [ spec requires: #('Math-ODE') ];
@@ -120,10 +117,10 @@ BaselineOfPolyMath >> baseline: spec [
120117
#('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');
121118
group: 'Extensions'
122119
with:
123-
#('Math-Clustering' 'Math-Number-Extensions' 'Math-Chromosome' 'Math-PrincipalComponentAnalysis' 'Math-FunctionFit' 'Math-AutomaticDifferenciation' 'Math-KernelSmoothing' 'Math-Permutation');
120+
#('Math-Clustering' 'Math-Number-Extensions' 'Math-Chromosome' 'Math-PrincipalComponentAnalysis' 'Math-FunctionFit' 'Math-AutomaticDifferenciation' 'Math-Permutation');
124121
group: 'Tests'
125122
with:
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');
123+
#('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-Number-Extensions' 'Math-Tests-Permutation' 'Math-Tests-TSNE' 'Math-Tests-Core-Process' 'Math-Tests-Distributions');
127124
group: 'default'
128125
with: #('Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy') ].
129126

src/Math-KernelSmoothing/PMKernelSmoothedDensity.class.st renamed to src/Math-Distributions/PMKernelSmoothedDensity.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Class {
1616
'kernelName',
1717
'ikernel'
1818
],
19-
#category : 'Math-KernelSmoothing'
19+
#category : #'Math-Distributions-KernelSmoothing'
2020
}
2121

2222
{ #category : #information }

src/Math-KernelSmoothing/package.st

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

src/Math-Tests-KernelSmoothing/PMSmoothedDensityTest.class.st renamed to src/Math-Tests-Distributions/PMSmoothedDensityTest.class.st

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

1010
{ #category : #running }

src/Math-Tests-KernelSmoothing/package.st

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

0 commit comments

Comments
 (0)