~ubuntu-branches/ubuntu/quantal/commons-math/quantal

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/math/distribution/HasDensity.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2010-04-05 23:33:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100405233302-gpqlceked76nw28a
Tags: 2.1-1
* New upstream release.
* Bump Standards-Version to 3.8.4: no changes needed
* Bump debhelper to >= 7
* Switch to 3.0 (quilt) source format:
  - Remove B-D on quilt
  - Add d/source/format
  - Remove d/README.source

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import org.apache.commons.math.MathException;
21
21
 
22
22
/**
23
 
 * Interface that signals that a distribution can compute the probability density function
 
23
 * <p>Interface that signals that a distribution can compute the probability density function
24
24
 * for a particular point.
25
25
 * @param <P> the type of the point at which density is to be computed, this
26
 
 * may be for example <code>Double</code>
27
 
 * @version $Revision: 705239 $ $Date: 2008-10-16 09:32:32 -0400 (Thu, 16 Oct 2008) $
 
26
 * may be for example <code>Double.</code></p>
 
27
 *
 
28
 * <p>This interface is deprecated.  As of version 2.0, the {@link ContinuousDistribution}
 
29
 * interface will be extended to include a <code>density(double)<code> method.</p>
 
30
 *
 
31
 * @deprecated to be removed in math 3.0
 
32
 * @version $Revision: 924362 $ $Date: 2010-03-17 12:45:31 -0400 (Wed, 17 Mar 2010) $
28
33
 */
29
34
public interface HasDensity<P> {
30
35