Skip to content

Commit c2a3e7b

Browse files
committed
Replace old names
1 parent aa0bca8 commit c2a3e7b

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/BaselineOfPolyMath/BaselineOfPolyMath.class.st

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,38 +31,38 @@ BaselineOfPolyMath >> baseline: spec [
3131
package: 'Math-Accuracy-Core';
3232
package: 'Math-Accuracy-ODE' with: [ spec requires: #( 'Math-ODE' 'XMLWriter' ) ];
3333
package: 'Math-ArbitraryPrecisionFloat' with: [ spec requires: #( 'ExtendedNumberParser' ) ];
34-
package: 'Math-AutomaticDifferenciation' with: [ spec requires: #( 'Math-Numerical' 'PolyMathDataStructures' ) ];
34+
package: 'Math-AutomaticDifferenciation' with: [ spec requires: #( 'Math-Numerical' 'MathVectorMatrix' ) ];
3535
package: 'Math-Benchmarks-KDTree' with: [ spec requires: #( 'Math-KDTree' 'SMark' ) ];
3636
package: 'Math-Benchmarks-ODE' with: [ spec requires: #( 'Math-ODE' 'SMark' 'XMLWriter' ) ];
37-
package: 'Math-Chromosome' with: [ spec requires: #( 'PolyMathDataStructures' ) ];
38-
package: 'Math-Clustering' with: [ spec requires: #( 'Math-Numerical' 'Math-Core-Process' 'PolyMathDataStructures' ) ];
37+
package: 'Math-Chromosome' with: [ spec requires: #( 'MathVectorMatrix' ) ];
38+
package: 'Math-Clustering' with: [ spec requires: #( 'Math-Numerical' 'Math-Core-Process' 'MathVectorMatrix' ) ];
3939
package: 'Math-Complex' with: [ spec requires: #( 'Math-Numerical' 'Math-Polynomials' ) ];
4040
package: 'Math-Helpers';
41-
package: 'Math-Distributions' with: [ spec requires: #( 'PolyMathDataStructures' 'Math-Quantile' 'Math-Core-Process' ) ];
41+
package: 'Math-Distributions' with: [ spec requires: #( 'MathVectorMatrix' 'Math-Quantile' 'Math-Core-Process' ) ];
4242
package: 'Math-Core-Process' with: [ spec requires: #( 'Math-Helpers' ) ];
4343
package: 'Math-Numerical'
44-
with: [ spec requires: #( 'PolyMathDataStructures' 'Math-Helpers' 'Math-Core-Process' 'Math-Distributions' 'Math-StatisticalMoments'
44+
with: [ spec requires: #( 'MathVectorMatrix' 'Math-Helpers' 'Math-Core-Process' 'Math-Distributions' 'Math-StatisticalMoments'
4545
'Math-Series' ) ];
4646
package: 'Math-Polynomials'
47-
with: [ spec requires: #( 'PolyMathDataStructures' 'Math-Helpers' 'Math-Core-Process' 'Math-Distributions' 'Math-StatisticalMoments'
47+
with: [ spec requires: #( 'MathVectorMatrix' 'Math-Helpers' 'Math-Core-Process' 'Math-Distributions' 'Math-StatisticalMoments'
4848
'Math-Series' ) ];
4949
package: 'Math-FastFourierTransform' with: [ spec requires: #( 'Math-Complex' ) ];
5050
package: 'Math-FunctionFit'
51-
with: [ spec requires: #( 'Math-Numerical' 'Math-Chromosome' 'Math-Accuracy-Core' 'PolyMathDataStructures' 'Math-Helpers' 'Math-Polynomials' ) ];
51+
with: [ spec requires: #( 'Math-Numerical' 'Math-Chromosome' 'Math-Accuracy-Core' 'MathVectorMatrix' 'Math-Helpers' 'Math-Polynomials' ) ];
5252
package: 'Math-KDTree';
5353
package: 'Math-Number-Extensions';
54-
package: 'Math-ODE' with: [ spec requires: #( 'Math-Numerical' 'PolyMathDataStructures' 'Math-Polynomials' ) ];
55-
package: 'Math-Permutation' with: [ spec requires: #( 'PolyMathDataStructures' 'Math-Core-Process' ) ];
54+
package: 'Math-ODE' with: [ spec requires: #( 'Math-Numerical' 'MathVectorMatrix' 'Math-Polynomials' ) ];
55+
package: 'Math-Permutation' with: [ spec requires: #( 'MathVectorMatrix' 'Math-Core-Process' ) ];
5656
package: 'Math-Physics-Constants';
57-
package: 'Math-PrincipalComponentAnalysis' with: [ spec requires: #( 'Math-Numerical' 'PolyMathDataStructures' 'Math-Polynomials' ) ];
57+
package: 'Math-PrincipalComponentAnalysis' with: [ spec requires: #( 'Math-Numerical' 'MathVectorMatrix' 'Math-Polynomials' ) ];
5858
package: 'Math-Quantile';
5959
package: 'Math-Quaternion' with: [ spec requires: #( 'Math-Complex' 'Math-Numerical' 'Math-Polynomials' ) ];
6060
package: 'Math-Series';
6161
package: 'Math-StatisticalMoments' with: [ spec requires: #( 'Math-Helpers' 'Math-Distributions' ) ];
6262
package: 'Math-TSNE';
6363
package: 'Math-Tests-Accuracy' with: [ spec requires: #( 'Math-Accuracy-Core' ) ];
6464
package: 'Math-Tests-ArbitraryPrecisionFloat' with: [ spec requires: #( 'Math-ArbitraryPrecisionFloat' ) ];
65-
package: 'Math-Tests-AutomaticDifferenciation' with: [ spec requires: #( 'Math-AutomaticDifferenciation' 'PolyMathDataStructures' ) ];
65+
package: 'Math-Tests-AutomaticDifferenciation' with: [ spec requires: #( 'Math-AutomaticDifferenciation' 'MathVectorMatrix' ) ];
6666
package: 'Math-Tests-Clustering' with: [ spec requires: #( 'Math-Clustering' 'Math-Distributions' 'Math-UtilsDataServer' ) ];
6767
package: 'Math-Tests-Complex' with: [ spec requires: #( 'Math-Complex' ) ];
6868
package: 'Math-Tests-Distributions' with: [ spec requires: #( 'Math-Distributions' ) ];
@@ -87,7 +87,7 @@ BaselineOfPolyMath >> baseline: spec [
8787
with:
8888
#( 'Math-Complex' 'Math-Quaternion' 'Math-Numerical' 'MathRandomNumbers' 'Math-KDTree' 'Math-ODE' 'Math-ArbitraryPrecisionFloat'
8989
'Math-FastFourierTransform' 'ExtendedNumberParser' 'Math-Quantile' 'Math-Physics-Constants' 'Math-Polynomials' 'Math-TSNE' 'Math-Core-Process'
90-
'Math-Helpers' 'PolyMathDataStructures' 'Math-Distributions' );
90+
'Math-Helpers' 'MathVectorMatrix' 'Math-Distributions' );
9191
group: 'Extensions'
9292
with: #( 'Math-Clustering' 'Math-Number-Extensions' 'Math-Chromosome' 'Math-PrincipalComponentAnalysis' 'Math-FunctionFit' 'Math-AutomaticDifferenciation'
9393
'Math-Permutation' );

0 commit comments

Comments
 (0)