Skip to content

Commit fd072e4

Browse files
committed
Merge distribution for histogram
1 parent 445654e commit fd072e4

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

src/BaselineOfPolyMath/BaselineOfPolyMath.class.st

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,8 @@ BaselineOfPolyMath >> baseline: spec [
4747
package: 'Math-Helpers';
4848
package: 'Math-Distributions' with: [ spec requires: #('PolyMathDataStructures') ];
4949
package: 'Math-Core-Process' with: [ spec requires: #('Math-Helpers') ];
50-
package: 'Math-Numerical' with: [ spec requires: #('PolyMathDataStructures' 'Math-Helpers' 'Math-Core-Process' 'Math-Distributions' 'Math-DistributionForHistogram' 'Math-StatisticalMoments' 'Math-Series') ];
51-
package: 'Math-Polynomials' with: [ spec requires: #('PolyMathDataStructures' 'Math-Helpers' 'Math-Core-Process' 'Math-Distributions' 'Math-DistributionForHistogram' 'Math-StatisticalMoments' 'Math-Series') ];
52-
package: 'Math-DistributionForHistogram'
53-
with: [ spec requires: #('Math-Distributions') ];
50+
package: 'Math-Numerical' with: [ spec requires: #('PolyMathDataStructures' 'Math-Helpers' 'Math-Core-Process' 'Math-Distributions' 'Math-StatisticalMoments' 'Math-Series') ];
51+
package: 'Math-Polynomials' with: [ spec requires: #('PolyMathDataStructures' 'Math-Helpers' 'Math-Core-Process' 'Math-Distributions' 'Math-StatisticalMoments' 'Math-Series') ];
5452
package: 'Math-FastFourierTransform'
5553
with: [ spec requires: #('Math-Complex') ];
5654
package: 'Math-FunctionFit'
@@ -72,7 +70,7 @@ BaselineOfPolyMath >> baseline: spec [
7270
[ spec requires: #('Math-Complex' 'Math-Numerical' 'Math-Polynomials') ];
7371
package: 'Math-Random';
7472
package: 'Math-Series';
75-
package: 'Math-StatisticalMoments' with: [ spec requires: #('Math-Helpers' 'Math-DistributionForHistogram') ];
73+
package: 'Math-StatisticalMoments' with: [ spec requires: #('Math-Helpers' 'Math-Distributions') ];
7674
package: 'Math-TSNE';
7775
package: 'Math-Tests-Accuracy'
7876
with: [ spec requires: #('Math-Accuracy-Core') ];

src/Math-DistributionForHistogram/package.st

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

src/Math-DistributionForHistogram/PMFisherSnedecorDistribution.class.st renamed to src/Math-Distributions/PMFisherSnedecorDistribution.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Class {
99
'chiSquareDistribution2',
1010
'incompleteBetaFunction'
1111
],
12-
#category : 'Math-DistributionForHistogram'
12+
#category : #'Math-Distributions-ForHistogram'
1313
}
1414

1515
{ #category : #creation }

src/Math-DistributionForHistogram/PMStudentDistribution.class.st renamed to src/Math-Distributions/PMStudentDistribution.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Class {
77
'chiSquareDistribution',
88
'incompleteBetaFunction'
99
],
10-
#category : 'Math-DistributionForHistogram'
10+
#category : #'Math-Distributions-ForHistogram'
1111
}
1212

1313
{ #category : #creation }

0 commit comments

Comments
 (0)