@@ -25,7 +25,8 @@ BaselineOfPolyMath >> baseline: spec [
2525 self
2626 sMark: spec;
2727 xmlWriter: spec;
28- polyMathDataStructures: spec.
28+ polyMathDataStructures: spec;
29+ randomNumbers: spec.
2930
3031 spec
3132 package: ' ExtendedNumberParser' ;
@@ -65,7 +66,6 @@ BaselineOfPolyMath >> baseline: spec [
6566 package: ' Math-Quaternion'
6667 with:
6768 [ spec requires: #('Math-Complex' 'Math-Numerical' 'Math-Polynomials') ];
68- package: ' Math-Random' ;
6969 package: ' Math-Series' ;
7070 package: ' Math-StatisticalMoments' with: [ spec requires: #('Math-Helpers' 'Math-Distributions') ];
7171 package: ' Math-TSNE' ;
@@ -102,8 +102,6 @@ BaselineOfPolyMath >> baseline: spec [
102102 with: [ spec requires: #('Math-Polynomials') ];
103103 package: ' Math-Tests-Quaternion'
104104 with: [ spec requires: #('Math-Quaternion') ];
105- package: ' Math-Tests-Random'
106- with: [ spec requires: #('Math-Random') ];
107105 package: ' Math-Tests-TSNE'
108106 with: [ spec requires: #('Math-TSNE') ];
109107 package: ' Math-UtilsDataServer' .
@@ -114,13 +112,13 @@ BaselineOfPolyMath >> baseline: spec [
114112 with: #('Math-Benchmarks-ODE' 'Math-Benchmarks-KDTree') ;
115113 group: ' Core'
116114 with:
117- #('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') ;
115+ #('Math-Complex' 'Math-Quaternion' 'Math-Numerical' 'MathRandomNumbers ' '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') ;
118116 group: ' Extensions'
119117 with:
120118 #('Math-Clustering' 'Math-Number-Extensions' 'Math-Chromosome' 'Math-PrincipalComponentAnalysis' 'Math-FunctionFit' 'Math-AutomaticDifferenciation' 'Math-Permutation') ;
121119 group: ' Tests'
122120 with:
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') ;
121+ #('Math-Tests-Clustering' 'Math-Tests-Numerical' 'Math-Tests-Complex' 'Math-Tests-Quaternion' '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') ;
124122 group: ' default'
125123 with: #('Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy') ].
126124
@@ -145,6 +143,12 @@ BaselineOfPolyMath >> projectClass [
145143 do: [ super projectClass ]
146144]
147145
146+ { #category : #dependencies }
147+ BaselineOfPolyMath >> randomNumbers: spec [
148+
149+ spec baseline: ' MathRandomNumbers' with: [ spec repository: ' github://PolyMathOrg/random-numbers:v1.x.x/src' ]
150+ ]
151+
148152{ #category : #dependencies }
149153BaselineOfPolyMath >> sMark: spec [
150154
0 commit comments