Fixed copyright date.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141496 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9e6639abd6
commit
297f7e849b
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2003-2004 The Apache Software Foundation.
|
* Copyright 2004 The Apache Software Foundation.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -22,7 +22,7 @@ import org.apache.commons.math.MathException;
|
||||||
/**
|
/**
|
||||||
* Base class for probability distributions.
|
* Base class for probability distributions.
|
||||||
*
|
*
|
||||||
* @version $Revision: 1.1 $ $Date: 2004/11/07 03:32:48 $
|
* @version $Revision: 1.2 $ $Date: 2004/11/07 20:39:15 $
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractDistribution
|
public abstract class AbstractDistribution
|
||||||
implements Distribution, Serializable {
|
implements Distribution, Serializable {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2003-2004 The Apache Software Foundation.
|
* Copyright 2004 The Apache Software Foundation.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -20,7 +20,7 @@ import org.apache.commons.math.MathException;
|
||||||
/**
|
/**
|
||||||
* Base interface for probability distributions.
|
* Base interface for probability distributions.
|
||||||
*
|
*
|
||||||
* @version $Revision: 1.1 $ $Date: 2004/11/07 03:32:48 $
|
* @version $Revision: 1.2 $ $Date: 2004/11/07 20:39:15 $
|
||||||
*/
|
*/
|
||||||
public interface Distribution {
|
public interface Distribution {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2003-2004 The Apache Software Foundation.
|
* Copyright 2004 The Apache Software Foundation.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -20,7 +20,7 @@ import org.apache.commons.math.MathException;
|
||||||
/**
|
/**
|
||||||
* Interface for discrete distributions of integer-valued random variables.
|
* Interface for discrete distributions of integer-valued random variables.
|
||||||
*
|
*
|
||||||
* @version $Revision: 1.1 $ $Date: 2004/11/07 03:32:48 $
|
* @version $Revision: 1.2 $ $Date: 2004/11/07 20:39:15 $
|
||||||
*/
|
*/
|
||||||
public interface IntegerDistribution extends DiscreteDistribution {
|
public interface IntegerDistribution extends DiscreteDistribution {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2003-2004 The Apache Software Foundation.
|
* Copyright 2004 The Apache Software Foundation.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -28,7 +28,7 @@ import org.apache.commons.math.MathException;
|
||||||
* </ul>
|
* </ul>
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* @version $Revision: 1.1 $ $Date: 2004/11/07 03:32:48 $
|
* @version $Revision: 1.2 $ $Date: 2004/11/07 20:39:15 $
|
||||||
*/
|
*/
|
||||||
public interface PoissonDistribution extends IntegerDistribution {
|
public interface PoissonDistribution extends IntegerDistribution {
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2003-2004 The Apache Software Foundation.
|
* Copyright 2004 The Apache Software Foundation.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -24,7 +24,7 @@ import org.apache.commons.math.util.MathUtils;
|
||||||
/**
|
/**
|
||||||
* Implementation for the @link{PoissonDistribution}
|
* Implementation for the @link{PoissonDistribution}
|
||||||
*
|
*
|
||||||
* @version $Revision: 1.1 $ $Date: 2004/11/07 03:32:48 $
|
* @version $Revision: 1.2 $ $Date: 2004/11/07 20:39:15 $
|
||||||
*/
|
*/
|
||||||
public class PoissonDistributionImpl extends AbstractIntegerDistribution
|
public class PoissonDistributionImpl extends AbstractIntegerDistribution
|
||||||
implements PoissonDistribution, Serializable {
|
implements PoissonDistribution, Serializable {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2003-2004 The Apache Software Foundation.
|
* Copyright 2004 The Apache Software Foundation.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -18,7 +18,7 @@ package org.apache.commons.math.distribution;
|
||||||
/**
|
/**
|
||||||
* <code>PoissonDistributionTest</code>
|
* <code>PoissonDistributionTest</code>
|
||||||
*
|
*
|
||||||
* @version $Revision: 1.1 $ $Date: 2004/11/07 03:32:49 $
|
* @version $Revision: 1.2 $ $Date: 2004/11/07 20:39:15 $
|
||||||
*/
|
*/
|
||||||
public class PoissonDistributionTest extends IntegerDistributionAbstractTest {
|
public class PoissonDistributionTest extends IntegerDistributionAbstractTest {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue