From 5ae172f590110bb70ec336ab582c8365279bf18d Mon Sep 17 00:00:00 2001 From: Hemal Varambhia Date: Sat, 27 Apr 2019 23:35:35 +0100 Subject: [PATCH 1/3] [issue-62] Removed an empty test case. --- src/Math-DHB-Numerical/PMBisectionZeroFinder.class.st | 2 +- .../PMBulirschStoerInterpolator.class.st | 2 +- src/Math-DHB-Numerical/PMCDFNewtonZeroFinder.class.st | 2 +- src/Math-DHB-Numerical/PMCauchyDistribution.class.st | 2 +- src/Math-DHB-Numerical/PMDecimalFloatingNumber.class.st | 2 +- src/Math-DHB-Numerical/PMExponentialDistribution.class.st | 2 +- .../PMFisherTippettDistribution.class.st | 2 +- src/Math-DHB-Numerical/PMFunctionOptimizer.class.st | 2 +- src/Math-DHB-Numerical/PMFunctionalIterator.class.st | 2 +- src/Math-DHB-Numerical/PMGeneticOptimizer.class.st | 2 +- src/Math-DHB-Numerical/PMHillClimbingOptimizer.class.st | 2 +- .../PMHistogrammedDistribution.class.st | 2 +- .../PMIncompleteBetaFractionTermServer.class.st | 2 +- .../PMIncompleteBetaFunctionFraction.class.st | 2 +- .../PMIncompleteGammaFractionTermServer.class.st | 2 +- .../PMIncompleteGammaSeriesTermServer.class.st | 2 +- src/Math-DHB-Numerical/PMLagrangeInterpolator.class.st | 2 +- src/Math-DHB-Numerical/PMLanczosFormula.class.st | 2 +- src/Math-DHB-Numerical/PMLaplaceDistribution.class.st | 2 +- src/Math-DHB-Numerical/PMLeastSquareFit.class.st | 2 +- src/Math-DHB-Numerical/PMLineSearch.class.st | 2 +- src/Math-DHB-Numerical/PMLinearRegression.class.st | 2 +- src/Math-DHB-Numerical/PMLogNormalDistribution.class.st | 2 +- src/Math-DHB-Numerical/PMMaximizingPoint.class.st | 2 +- .../PMMaximumLikelihoodHistogramFit.class.st | 2 +- src/Math-DHB-Numerical/PMMinimizingPoint.class.st | 2 +- .../PMMultiVariableGeneralOptimizer.class.st | 2 +- src/Math-DHB-Numerical/PMNevilleInterpolator.class.st | 2 +- src/Math-DHB-Numerical/PMNewtonInterpolator.class.st | 2 +- src/Math-DHB-Numerical/PMNewtonZeroFinder.class.st | 2 +- .../PMOneVariableFunctionOptimizer.class.st | 2 +- src/Math-DHB-Numerical/PMOptimizingBracketFinder.class.st | 2 +- src/Math-DHB-Numerical/PMPointSeries.class.st | 2 +- .../PMProbabilityDensityWithUnknownDistribution.class.st | 2 +- .../PMProbabilityDistributionFunction.class.st | 2 +- .../PMProjectedOneVariableFunction.class.st | 2 +- src/Math-DHB-Numerical/PMRombergIntegrator.class.st | 2 +- .../PMScaledProbabilityDensityFunction.class.st | 2 +- src/Math-DHB-Numerical/PMSeriesTermServer.class.st | 2 +- src/Math-DHB-Numerical/PMSimplexOptimizer.class.st | 2 +- src/Math-DHB-Numerical/PMSimpsonIntegrator.class.st | 2 +- src/Math-DHB-Numerical/PMSplineInterpolator.class.st | 2 +- src/Math-DHB-Numerical/PMTrapezeIntegrator.class.st | 2 +- src/Math-DHB-Numerical/PMTriangularDistribution.class.st | 2 +- src/Math-DHB-Numerical/PMUniformDistribution.class.st | 2 +- src/Math-DHB-Numerical/PMVectorAccumulatorTest.class.st | 8 -------- src/Math-DHB-Numerical/PMVectorProjectedFunction.class.st | 2 +- src/Math-DHB-Numerical/PMWeibullDistribution.class.st | 2 +- 48 files changed, 47 insertions(+), 55 deletions(-) delete mode 100644 src/Math-DHB-Numerical/PMVectorAccumulatorTest.class.st diff --git a/src/Math-DHB-Numerical/PMBisectionZeroFinder.class.st b/src/Math-DHB-Numerical/PMBisectionZeroFinder.class.st index f8e92c903..6c9d0b91a 100644 --- a/src/Math-DHB-Numerical/PMBisectionZeroFinder.class.st +++ b/src/Math-DHB-Numerical/PMBisectionZeroFinder.class.st @@ -8,7 +8,7 @@ Class { 'positiveX', 'negativeX' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #operation } diff --git a/src/Math-DHB-Numerical/PMBulirschStoerInterpolator.class.st b/src/Math-DHB-Numerical/PMBulirschStoerInterpolator.class.st index 1112b2986..7de85db42 100644 --- a/src/Math-DHB-Numerical/PMBulirschStoerInterpolator.class.st +++ b/src/Math-DHB-Numerical/PMBulirschStoerInterpolator.class.st @@ -1,7 +1,7 @@ Class { #name : #PMBulirschStoerInterpolator, #superclass : #PMNevilleInterpolator, - #category : 'Math-DHB-Numerical-Math-Interpolator' + #category : #'Math-DHB-Numerical-Math-Interpolator' } { #category : #private } diff --git a/src/Math-DHB-Numerical/PMCDFNewtonZeroFinder.class.st b/src/Math-DHB-Numerical/PMCDFNewtonZeroFinder.class.st index a5a1e15c4..b0bb58d78 100644 --- a/src/Math-DHB-Numerical/PMCDFNewtonZeroFinder.class.st +++ b/src/Math-DHB-Numerical/PMCDFNewtonZeroFinder.class.st @@ -7,7 +7,7 @@ Class { #instVars : [ 'old' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #operation } diff --git a/src/Math-DHB-Numerical/PMCauchyDistribution.class.st b/src/Math-DHB-Numerical/PMCauchyDistribution.class.st index 381e60cd0..0ca531517 100644 --- a/src/Math-DHB-Numerical/PMCauchyDistribution.class.st +++ b/src/Math-DHB-Numerical/PMCauchyDistribution.class.st @@ -5,7 +5,7 @@ Class { 'mu', 'beta' ], - #category : 'Math-DHB-Numerical-Math-Distribution' + #category : #'Math-DHB-Numerical-Math-Distribution' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMDecimalFloatingNumber.class.st b/src/Math-DHB-Numerical/PMDecimalFloatingNumber.class.st index dc8bc9e6a..89c148a29 100644 --- a/src/Math-DHB-Numerical/PMDecimalFloatingNumber.class.st +++ b/src/Math-DHB-Numerical/PMDecimalFloatingNumber.class.st @@ -17,7 +17,7 @@ Class { #classVars : [ 'Digits' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMExponentialDistribution.class.st b/src/Math-DHB-Numerical/PMExponentialDistribution.class.st index fde747d7e..1df12742a 100644 --- a/src/Math-DHB-Numerical/PMExponentialDistribution.class.st +++ b/src/Math-DHB-Numerical/PMExponentialDistribution.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'beta' ], - #category : 'Math-DHB-Numerical-Math-Distribution' + #category : #'Math-DHB-Numerical-Math-Distribution' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMFisherTippettDistribution.class.st b/src/Math-DHB-Numerical/PMFisherTippettDistribution.class.st index 4c90c18c4..623d224e7 100644 --- a/src/Math-DHB-Numerical/PMFisherTippettDistribution.class.st +++ b/src/Math-DHB-Numerical/PMFisherTippettDistribution.class.st @@ -5,7 +5,7 @@ Class { 'alpha', 'beta' ], - #category : 'Math-DHB-Numerical-Math-Distribution' + #category : #'Math-DHB-Numerical-Math-Distribution' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMFunctionOptimizer.class.st b/src/Math-DHB-Numerical/PMFunctionOptimizer.class.st index 605735cbf..c571e29e7 100644 --- a/src/Math-DHB-Numerical/PMFunctionOptimizer.class.st +++ b/src/Math-DHB-Numerical/PMFunctionOptimizer.class.st @@ -5,7 +5,7 @@ Class { 'optimizingPointClass', 'bestPoints' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMFunctionalIterator.class.st b/src/Math-DHB-Numerical/PMFunctionalIterator.class.st index bd0bf20ae..3fb208e27 100644 --- a/src/Math-DHB-Numerical/PMFunctionalIterator.class.st +++ b/src/Math-DHB-Numerical/PMFunctionalIterator.class.st @@ -16,7 +16,7 @@ Class { #instVars : [ 'functionBlock' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMGeneticOptimizer.class.st b/src/Math-DHB-Numerical/PMGeneticOptimizer.class.st index b1f9763b8..fade5fe25 100644 --- a/src/Math-DHB-Numerical/PMGeneticOptimizer.class.st +++ b/src/Math-DHB-Numerical/PMGeneticOptimizer.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'chromosomeManager' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMHillClimbingOptimizer.class.st b/src/Math-DHB-Numerical/PMHillClimbingOptimizer.class.st index 037422365..c3957dcfb 100644 --- a/src/Math-DHB-Numerical/PMHillClimbingOptimizer.class.st +++ b/src/Math-DHB-Numerical/PMHillClimbingOptimizer.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'unidimensionalFinder' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #initialization } diff --git a/src/Math-DHB-Numerical/PMHistogrammedDistribution.class.st b/src/Math-DHB-Numerical/PMHistogrammedDistribution.class.st index db82646d4..571615fd8 100644 --- a/src/Math-DHB-Numerical/PMHistogrammedDistribution.class.st +++ b/src/Math-DHB-Numerical/PMHistogrammedDistribution.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'histogram' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMIncompleteBetaFractionTermServer.class.st b/src/Math-DHB-Numerical/PMIncompleteBetaFractionTermServer.class.st index a8b26162f..ee83803ad 100644 --- a/src/Math-DHB-Numerical/PMIncompleteBetaFractionTermServer.class.st +++ b/src/Math-DHB-Numerical/PMIncompleteBetaFractionTermServer.class.st @@ -5,7 +5,7 @@ Class { 'alpha1', 'alpha2' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMIncompleteBetaFunctionFraction.class.st b/src/Math-DHB-Numerical/PMIncompleteBetaFunctionFraction.class.st index 57e212b0a..b32600dfe 100644 --- a/src/Math-DHB-Numerical/PMIncompleteBetaFunctionFraction.class.st +++ b/src/Math-DHB-Numerical/PMIncompleteBetaFunctionFraction.class.st @@ -11,7 +11,7 @@ Class { 'alpha1', 'alpha2' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMIncompleteGammaFractionTermServer.class.st b/src/Math-DHB-Numerical/PMIncompleteGammaFractionTermServer.class.st index a565882c0..15b813fde 100644 --- a/src/Math-DHB-Numerical/PMIncompleteGammaFractionTermServer.class.st +++ b/src/Math-DHB-Numerical/PMIncompleteGammaFractionTermServer.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'alpha' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMIncompleteGammaSeriesTermServer.class.st b/src/Math-DHB-Numerical/PMIncompleteGammaSeriesTermServer.class.st index c63dc15c7..58a3fb7fb 100644 --- a/src/Math-DHB-Numerical/PMIncompleteGammaSeriesTermServer.class.st +++ b/src/Math-DHB-Numerical/PMIncompleteGammaSeriesTermServer.class.st @@ -5,7 +5,7 @@ Class { 'alpha', 'sum' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMLagrangeInterpolator.class.st b/src/Math-DHB-Numerical/PMLagrangeInterpolator.class.st index cf465e162..a1b1f839d 100644 --- a/src/Math-DHB-Numerical/PMLagrangeInterpolator.class.st +++ b/src/Math-DHB-Numerical/PMLagrangeInterpolator.class.st @@ -13,7 +13,7 @@ Class { #instVars : [ 'pointCollection' ], - #category : 'Math-DHB-Numerical-Math-Interpolator' + #category : #'Math-DHB-Numerical-Math-Interpolator' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMLanczosFormula.class.st b/src/Math-DHB-Numerical/PMLanczosFormula.class.st index f2935653e..eb87385ad 100644 --- a/src/Math-DHB-Numerical/PMLanczosFormula.class.st +++ b/src/Math-DHB-Numerical/PMLanczosFormula.class.st @@ -20,7 +20,7 @@ Class { #classVars : [ 'UniqueInstance' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMLaplaceDistribution.class.st b/src/Math-DHB-Numerical/PMLaplaceDistribution.class.st index 42727b063..12d9f571f 100644 --- a/src/Math-DHB-Numerical/PMLaplaceDistribution.class.st +++ b/src/Math-DHB-Numerical/PMLaplaceDistribution.class.st @@ -5,7 +5,7 @@ Class { 'mu', 'beta' ], - #category : 'Math-DHB-Numerical-Math-Distribution' + #category : #'Math-DHB-Numerical-Math-Distribution' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMLeastSquareFit.class.st b/src/Math-DHB-Numerical/PMLeastSquareFit.class.st index 45ef541ea..f39ec3794 100644 --- a/src/Math-DHB-Numerical/PMLeastSquareFit.class.st +++ b/src/Math-DHB-Numerical/PMLeastSquareFit.class.st @@ -9,7 +9,7 @@ Class { 'constants', 'degreeOfFreedom' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMLineSearch.class.st b/src/Math-DHB-Numerical/PMLineSearch.class.st index f8da00500..8361d9c89 100644 --- a/src/Math-DHB-Numerical/PMLineSearch.class.st +++ b/src/Math-DHB-Numerical/PMLineSearch.class.st @@ -39,7 +39,7 @@ Class { 'useCubicApproximation', 'extendedResult' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #'instance creation' } diff --git a/src/Math-DHB-Numerical/PMLinearRegression.class.st b/src/Math-DHB-Numerical/PMLinearRegression.class.st index 17e33300a..81b67ce79 100644 --- a/src/Math-DHB-Numerical/PMLinearRegression.class.st +++ b/src/Math-DHB-Numerical/PMLinearRegression.class.st @@ -12,7 +12,7 @@ Class { 'intercept', 'correlationCoefficient' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMLogNormalDistribution.class.st b/src/Math-DHB-Numerical/PMLogNormalDistribution.class.st index 967e26612..0d95bf1af 100644 --- a/src/Math-DHB-Numerical/PMLogNormalDistribution.class.st +++ b/src/Math-DHB-Numerical/PMLogNormalDistribution.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'normalDistribution' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMMaximizingPoint.class.st b/src/Math-DHB-Numerical/PMMaximizingPoint.class.st index a9812adc6..f11025656 100644 --- a/src/Math-DHB-Numerical/PMMaximizingPoint.class.st +++ b/src/Math-DHB-Numerical/PMMaximizingPoint.class.st @@ -1,7 +1,7 @@ Class { #name : #PMMaximizingPoint, #superclass : #PMMinimizingPoint, - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMMaximumLikelihoodHistogramFit.class.st b/src/Math-DHB-Numerical/PMMaximumLikelihoodHistogramFit.class.st index a97d4e7c3..53e422cce 100644 --- a/src/Math-DHB-Numerical/PMMaximumLikelihoodHistogramFit.class.st +++ b/src/Math-DHB-Numerical/PMMaximumLikelihoodHistogramFit.class.st @@ -5,7 +5,7 @@ Class { 'count', 'countVariance' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #operation } diff --git a/src/Math-DHB-Numerical/PMMinimizingPoint.class.st b/src/Math-DHB-Numerical/PMMinimizingPoint.class.st index 53e05cd4b..7ea57214c 100644 --- a/src/Math-DHB-Numerical/PMMinimizingPoint.class.st +++ b/src/Math-DHB-Numerical/PMMinimizingPoint.class.st @@ -5,7 +5,7 @@ Class { 'value', 'position' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMMultiVariableGeneralOptimizer.class.st b/src/Math-DHB-Numerical/PMMultiVariableGeneralOptimizer.class.st index e97954700..e8f3a64d8 100644 --- a/src/Math-DHB-Numerical/PMMultiVariableGeneralOptimizer.class.st +++ b/src/Math-DHB-Numerical/PMMultiVariableGeneralOptimizer.class.st @@ -1,7 +1,7 @@ Class { #name : #PMMultiVariableGeneralOptimizer, #superclass : #PMFunctionOptimizer, - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #operation } diff --git a/src/Math-DHB-Numerical/PMNevilleInterpolator.class.st b/src/Math-DHB-Numerical/PMNevilleInterpolator.class.st index 156286d88..c13b781c0 100644 --- a/src/Math-DHB-Numerical/PMNevilleInterpolator.class.st +++ b/src/Math-DHB-Numerical/PMNevilleInterpolator.class.st @@ -5,7 +5,7 @@ Class { 'leftErrors', 'rightErrors' ], - #category : 'Math-DHB-Numerical-Math-Interpolator' + #category : #'Math-DHB-Numerical-Math-Interpolator' } { #category : #private } diff --git a/src/Math-DHB-Numerical/PMNewtonInterpolator.class.st b/src/Math-DHB-Numerical/PMNewtonInterpolator.class.st index 42c70dac6..c08f3c1d0 100644 --- a/src/Math-DHB-Numerical/PMNewtonInterpolator.class.st +++ b/src/Math-DHB-Numerical/PMNewtonInterpolator.class.st @@ -13,7 +13,7 @@ Class { #instVars : [ 'coefficients' ], - #category : 'Math-DHB-Numerical-Math-Interpolator' + #category : #'Math-DHB-Numerical-Math-Interpolator' } { #category : #transformation } diff --git a/src/Math-DHB-Numerical/PMNewtonZeroFinder.class.st b/src/Math-DHB-Numerical/PMNewtonZeroFinder.class.st index 7d3ed5e87..21ca25eeb 100644 --- a/src/Math-DHB-Numerical/PMNewtonZeroFinder.class.st +++ b/src/Math-DHB-Numerical/PMNewtonZeroFinder.class.st @@ -30,7 +30,7 @@ Class { 'lineSearch', 'lineSearchFunctionBlock' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMOneVariableFunctionOptimizer.class.st b/src/Math-DHB-Numerical/PMOneVariableFunctionOptimizer.class.st index 0c8264d50..34a5cebb4 100644 --- a/src/Math-DHB-Numerical/PMOneVariableFunctionOptimizer.class.st +++ b/src/Math-DHB-Numerical/PMOneVariableFunctionOptimizer.class.st @@ -4,7 +4,7 @@ Class { #classVars : [ 'GoldenSection' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMOptimizingBracketFinder.class.st b/src/Math-DHB-Numerical/PMOptimizingBracketFinder.class.st index 7e23d598f..126a940aa 100644 --- a/src/Math-DHB-Numerical/PMOptimizingBracketFinder.class.st +++ b/src/Math-DHB-Numerical/PMOptimizingBracketFinder.class.st @@ -1,7 +1,7 @@ Class { #name : #PMOptimizingBracketFinder, #superclass : #PMOneVariableFunctionOptimizer, - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMPointSeries.class.st b/src/Math-DHB-Numerical/PMPointSeries.class.st index 59d4994c6..78336b318 100644 --- a/src/Math-DHB-Numerical/PMPointSeries.class.st +++ b/src/Math-DHB-Numerical/PMPointSeries.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'points' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMProbabilityDensityWithUnknownDistribution.class.st b/src/Math-DHB-Numerical/PMProbabilityDensityWithUnknownDistribution.class.st index e2b96a38e..2341468f6 100644 --- a/src/Math-DHB-Numerical/PMProbabilityDensityWithUnknownDistribution.class.st +++ b/src/Math-DHB-Numerical/PMProbabilityDensityWithUnknownDistribution.class.st @@ -1,7 +1,7 @@ Class { #name : #PMProbabilityDensityWithUnknownDistribution, #superclass : #PMProbabilityDensity, - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMProbabilityDistributionFunction.class.st b/src/Math-DHB-Numerical/PMProbabilityDistributionFunction.class.st index 98295518f..842f3b4e5 100644 --- a/src/Math-DHB-Numerical/PMProbabilityDistributionFunction.class.st +++ b/src/Math-DHB-Numerical/PMProbabilityDistributionFunction.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'probabilityDensity' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMProjectedOneVariableFunction.class.st b/src/Math-DHB-Numerical/PMProjectedOneVariableFunction.class.st index 3282e064f..c28405956 100644 --- a/src/Math-DHB-Numerical/PMProjectedOneVariableFunction.class.st +++ b/src/Math-DHB-Numerical/PMProjectedOneVariableFunction.class.st @@ -6,7 +6,7 @@ Class { 'function', 'argument' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMRombergIntegrator.class.st b/src/Math-DHB-Numerical/PMRombergIntegrator.class.st index 38cbe422f..844c4e193 100644 --- a/src/Math-DHB-Numerical/PMRombergIntegrator.class.st +++ b/src/Math-DHB-Numerical/PMRombergIntegrator.class.st @@ -21,7 +21,7 @@ Class { 'points', 'interpolator' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMScaledProbabilityDensityFunction.class.st b/src/Math-DHB-Numerical/PMScaledProbabilityDensityFunction.class.st index 0bd77eeed..ee5ec788f 100644 --- a/src/Math-DHB-Numerical/PMScaledProbabilityDensityFunction.class.st +++ b/src/Math-DHB-Numerical/PMScaledProbabilityDensityFunction.class.st @@ -6,7 +6,7 @@ Class { 'count', 'binWidth' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #creation } diff --git a/src/Math-DHB-Numerical/PMSeriesTermServer.class.st b/src/Math-DHB-Numerical/PMSeriesTermServer.class.st index 992918236..94250e331 100644 --- a/src/Math-DHB-Numerical/PMSeriesTermServer.class.st +++ b/src/Math-DHB-Numerical/PMSeriesTermServer.class.st @@ -5,7 +5,7 @@ Class { 'x', 'lastTerm' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #initialization } diff --git a/src/Math-DHB-Numerical/PMSimplexOptimizer.class.st b/src/Math-DHB-Numerical/PMSimplexOptimizer.class.st index 59750fa6c..1aba05384 100644 --- a/src/Math-DHB-Numerical/PMSimplexOptimizer.class.st +++ b/src/Math-DHB-Numerical/PMSimplexOptimizer.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'worstVector' ], - #category : 'Math-DHB-Numerical-Math-FunctionIterator' + #category : #'Math-DHB-Numerical-Math-FunctionIterator' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMSimpsonIntegrator.class.st b/src/Math-DHB-Numerical/PMSimpsonIntegrator.class.st index 9870be10b..ca75007e9 100644 --- a/src/Math-DHB-Numerical/PMSimpsonIntegrator.class.st +++ b/src/Math-DHB-Numerical/PMSimpsonIntegrator.class.st @@ -1,7 +1,7 @@ Class { #name : #PMSimpsonIntegrator, #superclass : #PMTrapezeIntegrator, - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #operation } diff --git a/src/Math-DHB-Numerical/PMSplineInterpolator.class.st b/src/Math-DHB-Numerical/PMSplineInterpolator.class.st index 60c5af4c5..710a57e5c 100644 --- a/src/Math-DHB-Numerical/PMSplineInterpolator.class.st +++ b/src/Math-DHB-Numerical/PMSplineInterpolator.class.st @@ -5,7 +5,7 @@ Class { 'startPointDerivative', 'endPointDerivative' ], - #category : 'Math-DHB-Numerical-Math-Interpolator' + #category : #'Math-DHB-Numerical-Math-Interpolator' } { #category : #transformation } diff --git a/src/Math-DHB-Numerical/PMTrapezeIntegrator.class.st b/src/Math-DHB-Numerical/PMTrapezeIntegrator.class.st index 9404a0123..409c3582e 100644 --- a/src/Math-DHB-Numerical/PMTrapezeIntegrator.class.st +++ b/src/Math-DHB-Numerical/PMTrapezeIntegrator.class.st @@ -12,7 +12,7 @@ Class { 'sum', 'step' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMTriangularDistribution.class.st b/src/Math-DHB-Numerical/PMTriangularDistribution.class.st index 3a98b8e68..f03a3d065 100644 --- a/src/Math-DHB-Numerical/PMTriangularDistribution.class.st +++ b/src/Math-DHB-Numerical/PMTriangularDistribution.class.st @@ -6,7 +6,7 @@ Class { 'highLimit', 'peak' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMUniformDistribution.class.st b/src/Math-DHB-Numerical/PMUniformDistribution.class.st index 00b62684a..e1813aff0 100644 --- a/src/Math-DHB-Numerical/PMUniformDistribution.class.st +++ b/src/Math-DHB-Numerical/PMUniformDistribution.class.st @@ -5,7 +5,7 @@ Class { 'lowLimit', 'highLimit' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #public } diff --git a/src/Math-DHB-Numerical/PMVectorAccumulatorTest.class.st b/src/Math-DHB-Numerical/PMVectorAccumulatorTest.class.st deleted file mode 100644 index cc246926d..000000000 --- a/src/Math-DHB-Numerical/PMVectorAccumulatorTest.class.st +++ /dev/null @@ -1,8 +0,0 @@ -" -A PMVectorAccumulatorTest is a test class for testing the behavior of PMVectorAccumulator -" -Class { - #name : #PMVectorAccumulatorTest, - #superclass : #TestCase, - #category : #'Math-DHB-Numerical-Tests' -} diff --git a/src/Math-DHB-Numerical/PMVectorProjectedFunction.class.st b/src/Math-DHB-Numerical/PMVectorProjectedFunction.class.st index b2f0ed550..43e6756d5 100644 --- a/src/Math-DHB-Numerical/PMVectorProjectedFunction.class.st +++ b/src/Math-DHB-Numerical/PMVectorProjectedFunction.class.st @@ -1,7 +1,7 @@ Class { #name : #PMVectorProjectedFunction, #superclass : #PMProjectedOneVariableFunction, - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #information } diff --git a/src/Math-DHB-Numerical/PMWeibullDistribution.class.st b/src/Math-DHB-Numerical/PMWeibullDistribution.class.st index ba8597040..8c3d982b0 100644 --- a/src/Math-DHB-Numerical/PMWeibullDistribution.class.st +++ b/src/Math-DHB-Numerical/PMWeibullDistribution.class.st @@ -6,7 +6,7 @@ Class { 'beta', 'norm' ], - #category : 'Math-DHB-Numerical' + #category : #'Math-DHB-Numerical' } { #category : #information } From e4b35b199f052a4fe345eb682a1739f117093717 Mon Sep 17 00:00:00 2001 From: Hemal Varambhia Date: Sat, 27 Apr 2019 23:40:21 +0100 Subject: [PATCH 2/3] [issue-62] Moved the tests to a more appropriate package. --- .../PMVectorTest.class.st | 2 +- src/Math-Tests-Core/package.st | 1 + .../PMCovarianceAccumulatorTest.class.st | 2 +- .../PMDecimalFloatingNumberTest.class.st | 2 +- .../PMExponentialDistributionTest.class.st | 2 +- .../PMFloatingPointMachineTestCase.class.st | 2 +- .../PMGeneticOptimizerBugsTest.class.st | 2 +- src/Math-Tests-DHB-Numerical/PMHistogramTestsAndBugs.class.st | 2 +- .../PMNumberExtensionsTestCase.class.st | 2 +- .../PMNumericalMethodsTestCase.class.st | 2 +- src/Math-Tests-DHB-Numerical/PMStatisticsBugs.class.st | 2 +- 11 files changed, 11 insertions(+), 10 deletions(-) rename src/{Math-Tests-DHB-Numerical => Math-Tests-Core}/PMVectorTest.class.st (99%) create mode 100644 src/Math-Tests-Core/package.st diff --git a/src/Math-Tests-DHB-Numerical/PMVectorTest.class.st b/src/Math-Tests-Core/PMVectorTest.class.st similarity index 99% rename from src/Math-Tests-DHB-Numerical/PMVectorTest.class.st rename to src/Math-Tests-Core/PMVectorTest.class.st index 114d575ce..84afe11c0 100644 --- a/src/Math-Tests-DHB-Numerical/PMVectorTest.class.st +++ b/src/Math-Tests-Core/PMVectorTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PMVectorTest, #superclass : #TestCase, - #category : 'Math-Tests-DHB-Numerical' + #category : #'Math-Tests-Core' } { #category : #tests } diff --git a/src/Math-Tests-Core/package.st b/src/Math-Tests-Core/package.st new file mode 100644 index 000000000..8f219b1d8 --- /dev/null +++ b/src/Math-Tests-Core/package.st @@ -0,0 +1 @@ +Package { #name : #'Math-Tests-Core' } diff --git a/src/Math-Tests-DHB-Numerical/PMCovarianceAccumulatorTest.class.st b/src/Math-Tests-DHB-Numerical/PMCovarianceAccumulatorTest.class.st index a9595ab8a..8a5379b7f 100644 --- a/src/Math-Tests-DHB-Numerical/PMCovarianceAccumulatorTest.class.st +++ b/src/Math-Tests-DHB-Numerical/PMCovarianceAccumulatorTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PMCovarianceAccumulatorTest, #superclass : #TestCase, - #category : 'Math-Tests-DHB-Numerical' + #category : #'Math-Tests-DHB-Numerical' } { #category : #tests } diff --git a/src/Math-Tests-DHB-Numerical/PMDecimalFloatingNumberTest.class.st b/src/Math-Tests-DHB-Numerical/PMDecimalFloatingNumberTest.class.st index dab8ca8b8..e8a9445f1 100644 --- a/src/Math-Tests-DHB-Numerical/PMDecimalFloatingNumberTest.class.st +++ b/src/Math-Tests-DHB-Numerical/PMDecimalFloatingNumberTest.class.st @@ -4,7 +4,7 @@ A DhbDecimalFloatingNumberTest is a test class for testing the behavior of DhbDe Class { #name : #PMDecimalFloatingNumberTest, #superclass : #TestCase, - #category : 'Math-Tests-DHB-Numerical' + #category : #'Math-Tests-DHB-Numerical' } { #category : #tests } diff --git a/src/Math-Tests-DHB-Numerical/PMExponentialDistributionTest.class.st b/src/Math-Tests-DHB-Numerical/PMExponentialDistributionTest.class.st index 9cdaeaf15..5635dafff 100644 --- a/src/Math-Tests-DHB-Numerical/PMExponentialDistributionTest.class.st +++ b/src/Math-Tests-DHB-Numerical/PMExponentialDistributionTest.class.st @@ -4,7 +4,7 @@ A DhbExponentialDistributionTest is a test class for testing the behavior of Dhb Class { #name : #PMExponentialDistributionTest, #superclass : #TestCase, - #category : 'Math-Tests-DHB-Numerical' + #category : #'Math-Tests-DHB-Numerical' } { #category : #tests } diff --git a/src/Math-Tests-DHB-Numerical/PMFloatingPointMachineTestCase.class.st b/src/Math-Tests-DHB-Numerical/PMFloatingPointMachineTestCase.class.st index 5c857e4e9..7d9625560 100644 --- a/src/Math-Tests-DHB-Numerical/PMFloatingPointMachineTestCase.class.st +++ b/src/Math-Tests-DHB-Numerical/PMFloatingPointMachineTestCase.class.st @@ -1,7 +1,7 @@ Class { #name : #PMFloatingPointMachineTestCase, #superclass : #TestCase, - #category : 'Math-Tests-DHB-Numerical' + #category : #'Math-Tests-DHB-Numerical' } { #category : #precision } diff --git a/src/Math-Tests-DHB-Numerical/PMGeneticOptimizerBugsTest.class.st b/src/Math-Tests-DHB-Numerical/PMGeneticOptimizerBugsTest.class.st index 22305a00a..1f83a52ee 100644 --- a/src/Math-Tests-DHB-Numerical/PMGeneticOptimizerBugsTest.class.st +++ b/src/Math-Tests-DHB-Numerical/PMGeneticOptimizerBugsTest.class.st @@ -6,7 +6,7 @@ Class { 'function', 'optimizer' ], - #category : 'Math-Tests-DHB-Numerical' + #category : #'Math-Tests-DHB-Numerical' } { #category : #running } diff --git a/src/Math-Tests-DHB-Numerical/PMHistogramTestsAndBugs.class.st b/src/Math-Tests-DHB-Numerical/PMHistogramTestsAndBugs.class.st index 9ab2c8343..33d96ad82 100644 --- a/src/Math-Tests-DHB-Numerical/PMHistogramTestsAndBugs.class.st +++ b/src/Math-Tests-DHB-Numerical/PMHistogramTestsAndBugs.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'h' ], - #category : 'Math-Tests-DHB-Numerical' + #category : #'Math-Tests-DHB-Numerical' } { #category : #comment } diff --git a/src/Math-Tests-DHB-Numerical/PMNumberExtensionsTestCase.class.st b/src/Math-Tests-DHB-Numerical/PMNumberExtensionsTestCase.class.st index b7cef4718..0bb5b2981 100644 --- a/src/Math-Tests-DHB-Numerical/PMNumberExtensionsTestCase.class.st +++ b/src/Math-Tests-DHB-Numerical/PMNumberExtensionsTestCase.class.st @@ -4,7 +4,7 @@ A DhbNumberExtensionsTestCase is a suite of tests for extension methods to Numbe Class { #name : #PMNumberExtensionsTestCase, #superclass : #TestCase, - #category : 'Math-Tests-DHB-Numerical' + #category : #'Math-Tests-DHB-Numerical' } { #category : #'function evaluation' } diff --git a/src/Math-Tests-DHB-Numerical/PMNumericalMethodsTestCase.class.st b/src/Math-Tests-DHB-Numerical/PMNumericalMethodsTestCase.class.st index fb5f84316..0896af13c 100644 --- a/src/Math-Tests-DHB-Numerical/PMNumericalMethodsTestCase.class.st +++ b/src/Math-Tests-DHB-Numerical/PMNumericalMethodsTestCase.class.st @@ -1,7 +1,7 @@ Class { #name : #PMNumericalMethodsTestCase, #superclass : #TestCase, - #category : 'Math-Tests-DHB-Numerical' + #category : #'Math-Tests-DHB-Numerical' } { #category : #privateMethods } diff --git a/src/Math-Tests-DHB-Numerical/PMStatisticsBugs.class.st b/src/Math-Tests-DHB-Numerical/PMStatisticsBugs.class.st index afbbcd991..58f8a525c 100644 --- a/src/Math-Tests-DHB-Numerical/PMStatisticsBugs.class.st +++ b/src/Math-Tests-DHB-Numerical/PMStatisticsBugs.class.st @@ -1,7 +1,7 @@ Class { #name : #PMStatisticsBugs, #superclass : #TestCase, - #category : 'Math-Tests-DHB-Numerical' + #category : #'Math-Tests-DHB-Numerical' } { #category : #tests } From 757f7578af3b2c8a21cbc4f9f8c294beb62b337c Mon Sep 17 00:00:00 2001 From: Hemal Varambhia Date: Sun, 28 Apr 2019 20:12:14 +0100 Subject: [PATCH 3/3] [issue-62] Moved the test class to a more appropriate package. --- .../PMFixpointTest.class.st | 2 +- src/Math-Tests-Core-Process/package.st | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) rename src/{Math-Tests-DHB-wk => Math-Tests-Core-Process}/PMFixpointTest.class.st (98%) create mode 100644 src/Math-Tests-Core-Process/package.st diff --git a/src/Math-Tests-DHB-wk/PMFixpointTest.class.st b/src/Math-Tests-Core-Process/PMFixpointTest.class.st similarity index 98% rename from src/Math-Tests-DHB-wk/PMFixpointTest.class.st rename to src/Math-Tests-Core-Process/PMFixpointTest.class.st index fcad3f2bc..968315e02 100644 --- a/src/Math-Tests-DHB-wk/PMFixpointTest.class.st +++ b/src/Math-Tests-Core-Process/PMFixpointTest.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'fp' ], - #category : 'Math-Tests-DHB-wk' + #category : #'Math-Tests-Core-Process' } { #category : #running } diff --git a/src/Math-Tests-Core-Process/package.st b/src/Math-Tests-Core-Process/package.st new file mode 100644 index 000000000..0de537ce7 --- /dev/null +++ b/src/Math-Tests-Core-Process/package.st @@ -0,0 +1 @@ +Package { #name : #'Math-Tests-Core-Process' }