EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.probfunction.math.apache.impl]

COVERAGE SUMMARY FOR SOURCE FILE [GammaDistributionFromMoments.java]

nameclass, %method, %block, %line, %
GammaDistributionFromMoments.java0%   (0/1)0%   (0/1)0%   (0/18)0%   (0/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class GammaDistributionFromMoments0%   (0/1)0%   (0/1)0%   (0/18)0%   (0/4)
GammaDistributionFromMoments (double, double): void 0%   (0/1)0%   (0/18)0%   (0/4)

1package de.uka.ipd.sdq.probfunction.math.apache.impl;
2 
3 
4import de.uka.ipd.sdq.probfunction.math.IGammaDistribution;
5import de.uka.ipd.sdq.probfunction.math.apache.distribution.GammaDistributionFromMomentsImpl;
6 
7public class GammaDistributionFromMoments extends GammaDistribution  implements IGammaDistribution {
8        
9        /**
10         * Constructs a GammaDist object based on the distribution mean and 
11         * distribution coefficient of variance. 
12         * @param distribution mean 
13         * @param coefficient of variance ( = standard deviation / mean)  
14         */
15        public GammaDistributionFromMoments(double mean, double coefficientOfVariance) {
16                
17                double variance = coefficientOfVariance * coefficientOfVariance * mean * mean ;
18                this.internalFunction = new GammaDistributionFromMomentsImpl(mean, variance);
19        }
20 
21 
22}

[all classes][de.uka.ipd.sdq.probfunction.math.apache.impl]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov