Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
97 changes: 42 additions & 55 deletions src/BaselineOfPolyMath/BaselineOfPolyMath.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@ BaselineOfPolyMath >> baseline: spec [
spec
for: #common
do: [
spec blessing: #baseline.
spec repository: 'github://PolyMathOrg/PolyMath/src'.
spec
baseline: 'SMark'
with: [ spec repository: 'github://smarr/SMark:v1.0.4' ];
baseline: 'XMLWriter'
with: [ spec
repository: 'github://pharo-contributions/XML-XMLWriter:2.9.x/src' ].
"External dependencies"
self
sMark: spec;
xmlWriter: spec;
polyMathDataStructures: spec.

spec
package: 'ExtendedNumberParser';
package: 'Math-Accuracy-Core';
Expand All @@ -37,30 +35,20 @@ BaselineOfPolyMath >> baseline: spec [
package: 'Math-ArbitraryPrecisionFloat'
with: [ spec requires: #('ExtendedNumberParser') ];
package: 'Math-AutomaticDifferenciation'
with: [ spec requires: #('Math-Numerical' 'Math-Matrix') ];
with: [ spec requires: #('Math-Numerical' 'PolyMathDataStructures') ];
package: 'Math-Benchmarks-KDTree'
with: [ spec requires: #('Math-KDTree' 'SMark') ];
package: 'Math-Benchmarks-ODE'
with: [ spec requires: #('Math-ODE' 'SMark' 'XMLWriter') ];
package: 'Math-Chromosome'
with: [ spec requires: #('Math-Core') ];
package: 'Math-Clustering'
with:
[ spec requires: #('Math-Numerical' 'Math-Core-Process' 'Math-Matrix') ];
package: 'Math-Chromosome' with: [ spec requires: #('PolyMathDataStructures') ];
package: 'Math-Clustering' with: [ spec requires: #('Math-Numerical' 'Math-Core-Process' 'PolyMathDataStructures') ];
package: 'Math-Complex'
with: [ spec requires: #('Math-Numerical' 'Math-Polynomials') ];
package: 'Math-Core';
package: 'Math-Core-Distribution'
with: [ spec requires: #('Math-Core') ];
package: 'Math-Core-Process';
package: 'Math-Numerical'
with: [ spec
requires:
#('Math-Core' 'Math-Core-Process' 'Math-Core-Distribution' 'Math-DistributionGamma' 'Math-DistributionBeta' 'Math-DistributionForHistogram' 'Math-StatisticalMoments' 'Math-Series') ];
package: 'Math-Polynomials'
with: [ spec
requires:
#('Math-Core' 'Math-Core-Process' 'Math-Core-Distribution' 'Math-DistributionGamma' 'Math-DistributionBeta' 'Math-DistributionForHistogram' 'Math-StatisticalMoments' 'Math-Series') ];
package: 'Math-Helpers';
package: 'Math-Core-Distribution' with: [ spec requires: #('PolyMathDataStructures') ];
package: 'Math-Core-Process' with: [ spec requires: #('Math-Helpers') ];
package: 'Math-Numerical' with: [ spec requires: #('PolyMathDataStructures' 'Math-Helpers' 'Math-Core-Process' 'Math-Core-Distribution' 'Math-DistributionGamma' 'Math-DistributionBeta' 'Math-DistributionForHistogram' 'Math-StatisticalMoments' 'Math-Series') ];
package: 'Math-Polynomials' with: [ spec requires: #('PolyMathDataStructures' 'Math-Helpers' 'Math-Core-Process' 'Math-Core-Distribution' 'Math-DistributionGamma' 'Math-DistributionBeta' 'Math-DistributionForHistogram' 'Math-StatisticalMoments' 'Math-Series') ];
package: 'Math-DistributionBeta'
with: [ spec requires: #('Math-DistributionGamma') ];
package: 'Math-DistributionForHistogram'
Expand All @@ -72,47 +60,32 @@ BaselineOfPolyMath >> baseline: spec [
package: 'Math-FunctionFit'
with: [ spec
requires:
#('Math-Numerical' 'Math-Chromosome' 'Math-Accuracy-Core' 'Math-Core' 'Math-Matrix' 'Math-Polynomials') ];
#('Math-Numerical' 'Math-Chromosome' 'Math-Accuracy-Core' 'PolyMathDataStructures' 'Math-Helpers' 'Math-Polynomials') ];
package: 'Math-KDTree';
package: 'Math-KernelSmoothing'
with: [ spec
requires: #('Math-Quantile' 'Math-Numerical' 'Math-Polynomials') ];
package: 'Math-KernelSmoothing' with: [ spec requires: #('Math-Quantile' 'Math-Numerical' 'Math-Polynomials') ];
package: 'Math-KolmogorovSmirnov'
with: [ spec requires: #('Math-Numerical' 'Math-Polynomials') ];
package: 'Math-Matrix';
package: 'Math-Number-Extensions';
package: 'Math-ODE'
with:
[ spec requires: #('Math-Numerical' 'Math-Matrix' 'Math-Polynomials') ];
package: 'Math-Permutation'
with: [ spec requires: #('Math-Core' 'Math-Matrix' 'Math-Core-Process') ];
package: 'Math-ODE' with: [ spec requires: #('Math-Numerical' 'PolyMathDataStructures' 'Math-Polynomials') ];
package: 'Math-Permutation' with: [ spec requires: #('PolyMathDataStructures' 'Math-Core-Process') ];
package: 'Math-Physics-Constants';
package: 'Math-PrincipalComponentAnalysis'
with:
[ spec requires: #('Math-Numerical' 'Math-Matrix' 'Math-Polynomials') ];
package: 'Math-PrincipalComponentAnalysis' with: [ spec requires: #('Math-Numerical' 'PolyMathDataStructures' 'Math-Polynomials') ];
package: 'Math-Quantile';
package: 'Math-Quaternion'
with:
[ spec requires: #('Math-Complex' 'Math-Numerical' 'Math-Polynomials') ];
package: 'Math-Random';
package: 'Math-Series';
package: 'Math-StatisticalMoments'
with: [ spec requires: #('Math-Core' 'Math-DistributionForHistogram') ];
package: 'Math-StatisticalMoments' with: [ spec requires: #('Math-Helpers' 'Math-DistributionForHistogram') ];
package: 'Math-TSNE';
package: 'Math-Tests-Accuracy'
with: [ spec requires: #('Math-Accuracy-Core') ];
package: 'Math-Tests-ArbitraryPrecisionFloat'
with: [ spec requires: #('Math-ArbitraryPrecisionFloat') ];
package: 'Math-Tests-AutomaticDifferenciation'
with: [ spec requires: #('Math-AutomaticDifferenciation' 'Math-Matrix') ];
package: 'Math-Tests-Clustering'
with: [ spec
requires:
#('Math-Clustering' 'Math-Core' 'Math-Core-Distribution' 'Math-UtilsDataServer') ];
package: 'Math-Tests-AutomaticDifferenciation' with: [ spec requires: #('Math-AutomaticDifferenciation' 'PolyMathDataStructures') ];
package: 'Math-Tests-Clustering' with: [ spec requires: #('Math-Clustering' 'Math-Core-Distribution' 'Math-UtilsDataServer') ];
package: 'Math-Tests-Complex'
with: [ spec requires: #('Math-Complex') ];
package: 'Math-Tests-Core'
with: [ spec requires: #('Math-Core') ];
package: 'Math-Tests-Core-Distribution'
with: [ spec requires: #('Math-Core-Distribution') ];
package: 'Math-Tests-Core-Process'
Expand All @@ -130,10 +103,6 @@ BaselineOfPolyMath >> baseline: spec [
package: 'Math-Tests-KolmogorovSmirnov'
with: [ spec
requires: #('Math-Numerical' 'Math-KolmogorovSmirnov' 'Math-Polynomials') ];
package: 'Math-Tests-Matrix'
with: [ spec
requires:
#('Math-Core' 'Math-Numerical' 'Math-StatisticalMoments' 'Math-Matrix' 'Math-Polynomials') ];
package: 'Math-Tests-Number-Extensions'
with: [ spec requires: #('Math-Number-Extensions') ];
package: 'Math-Tests-ODE' with: [ spec requires: #('Math-ODE') ];
Expand All @@ -159,20 +128,38 @@ BaselineOfPolyMath >> baseline: spec [
with: #('Math-Benchmarks-ODE' 'Math-Benchmarks-KDTree');
group: 'Core'
with:
#('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-Core' 'Math-Core-Distribution');
#('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-Core-Distribution');
group: 'Extensions'
with:
#('Math-Clustering' 'Math-Number-Extensions' 'Math-Chromosome' 'Math-PrincipalComponentAnalysis' 'Math-FunctionFit' 'Math-AutomaticDifferenciation' 'Math-KernelSmoothing' 'Math-Permutation' 'Math-KolmogorovSmirnov');
group: 'Tests'
with:
#('Math-Tests-Matrix' '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-Core-Distribution' 'Math-Tests-Core');
#('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-Core-Distribution');
group: 'default'
with: #('Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy') ]
]

{ #category : #dependencies }
BaselineOfPolyMath >> polyMathDataStructures: spec [

spec baseline: 'PolyMathDataStructures' with: [ spec repository: 'github://PolyMathOrg/PolyMath-DataStructures:v1.x.x/src' ]
]

{ #category : #accessing }
BaselineOfPolyMath >> projectClass [
^ [ self class environment at: #MetacelloCypressBaselineProject ]
on: NotFound
do: [ super projectClass ]
]

{ #category : #dependencies }
BaselineOfPolyMath >> sMark: spec [

spec baseline: 'SMark' with: [ spec repository: 'github://smarr/SMark:v1.0.4' ]
]

{ #category : #dependencies }
BaselineOfPolyMath >> xmlWriter: spec [

spec baseline: 'XMLWriter' with: [ spec repository: 'github://pharo-contributions/XML-XMLWriter:2.9.x/src' ]
]
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,7 @@
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
"
Class {
#name : #ManifestMathTestsMatrix,
#name : #ManifestMathChromosome,
#superclass : #PackageManifest,
#category : #'Math-Tests-Matrix-Manifest'
#category : #'Math-Chromosome-Manifest'
}

{ #category : #'meta-data - dependency analyser' }
ManifestMathTestsMatrix class >> manuallyResolvedDependencies [
^ #(#'Math-Core-Process')
]
15 changes: 0 additions & 15 deletions src/Math-Core/ArrayedCollection.extension.st

This file was deleted.

11 changes: 0 additions & 11 deletions src/Math-Core/Collection.extension.st

This file was deleted.

13 changes: 0 additions & 13 deletions src/Math-Core/ManifestMathCore.class.st

This file was deleted.

13 changes: 0 additions & 13 deletions src/Math-Core/Number.extension.st

This file was deleted.

Loading