You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by md...@apache.org on 2004/01/29 17:54:05 UTC

cvs commit: jakarta-commons/math/src/experimental/org/apache/commons/math/analysis DerivativeOperatorFactoryTest.java

mdiggory    2004/01/29 08:54:05

  Modified:    math/src/experimental/org/apache/commons/math/function
                        Variable.java Evaluation.java
                        EvaluationException.java EvaluationContext.java
                        Compilable.java DefaultContext.java
               math/src/experimental/org/apache/commons/math/analysis/derivative
                        CenterDifferenceDerivative.java
                        AbstractDifferenceDerivative.java
                        BackwardDifferenceDerivative.java
                        ForwardDifferenceDerivative.java
               math/src/experimental/org/apache/commons/math/function/simple
                        Sqrt.java Multiply.java Power.java Equals.java
                        Divide.java Add.java Subtract.java
               math/src/experimental/org/apache/commons/math/linear
                        Decomposition.java Decomposer.java
                        DecompositionFactory.java
               math/src/experimental/org/apache/commons/math/analysis
                        DerivativeOperatorFactoryTest.java
  Log:
  Removing default generated @author Administrator tags from Eclipse
  
  Revision  Changes    Path
  1.4       +2 -4      jakarta-commons/math/src/experimental/org/apache/commons/math/function/Variable.java
  
  Index: Variable.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/Variable.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Variable.java	29 Jan 2004 16:48:47 -0000	1.3
  +++ Variable.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -20,10 +20,8 @@
   import java.io.Serializable;
   
   /**
  - * @author Administrator
  - *
  - * To change the template for this generated type comment go to
  - * Window - Preferences - Java - Code Generation - Code and Comments
  +
  +
    */
   public class Variable implements Evaluation, Serializable {
   
  
  
  
  1.4       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/Evaluation.java
  
  Index: Evaluation.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/Evaluation.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Evaluation.java	29 Jan 2004 16:48:47 -0000	1.3
  +++ Evaluation.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -18,7 +18,7 @@
   package org.apache.commons.math.function;
   
   /**
  - * @author Administrator
  +
    *
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/EvaluationException.java
  
  Index: EvaluationException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/EvaluationException.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- EvaluationException.java	29 Jan 2004 16:48:47 -0000	1.4
  +++ EvaluationException.java	29 Jan 2004 16:54:04 -0000	1.5
  @@ -20,7 +20,7 @@
   import org.apache.commons.math.MathException;
   
   /**
  - * @author Administrator
  +
    *
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
  
  
  
  1.4       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/EvaluationContext.java
  
  Index: EvaluationContext.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/EvaluationContext.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- EvaluationContext.java	29 Jan 2004 16:48:47 -0000	1.3
  +++ EvaluationContext.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -18,7 +18,7 @@
   package org.apache.commons.math.function;
   
   /**
  - * @author Administrator
  +
    *
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
  
  
  
  1.4       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/Compilable.java
  
  Index: Compilable.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/Compilable.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Compilable.java	29 Jan 2004 16:48:47 -0000	1.3
  +++ Compilable.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -18,7 +18,7 @@
   package org.apache.commons.math.function;
   
   /**
  - * @author Administrator
  +
    *
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
  
  
  
  1.4       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/DefaultContext.java
  
  Index: DefaultContext.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/DefaultContext.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DefaultContext.java	29 Jan 2004 16:48:47 -0000	1.3
  +++ DefaultContext.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -18,7 +18,7 @@
   package org.apache.commons.math.function;
   
   /**
  - * @author Administrator
  +
    *
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
  
  
  
  1.3       +17 -53    jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/CenterDifferenceDerivative.java
  
  Index: CenterDifferenceDerivative.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/CenterDifferenceDerivative.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- CenterDifferenceDerivative.java	29 Jan 2004 00:49:02 -0000	1.2
  +++ CenterDifferenceDerivative.java	29 Jan 2004 16:54:04 -0000	1.3
  @@ -1,55 +1,19 @@
  -/* ====================================================================
  - * The Apache Software License, Version 1.1
  - *
  - * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
  - * reserved.
  - *
  - * Redistribution and use in source and binary forms, with or without
  - * modification, are permitted provided that the following conditions
  - * are met:
  - *
  - * 1. Redistributions of source code must retain the above copyright
  - *    notice, this list of conditions and the following disclaimer.
  - *
  - * 2. Redistributions in binary form must reproduce the above copyright
  - *    notice, this list of conditions and the following disclaimer in
  - *    the documentation and/or other materials provided with the
  - *    distribution.
  - *
  - * 3. The end-user documentation included with the redistribution, if
  - *    any, must include the following acknowledgement:
  - *       "This product includes software developed by the
  - *        Apache Software Foundation (http://www.apache.org/)."
  - *    Alternately, this acknowledgement may appear in the software itself,
  - *    if and wherever such third-party acknowledgements normally appear.
  - *
  - * 4. The names "The Jakarta Project", "Commons", and "Apache Software
  - *    Foundation" must not be used to endorse or promote products derived
  - *    from this software without prior written permission. For written
  - *    permission, please contact apache@apache.org.
  - *
  - * 5. Products derived from this software may not be called "Apache"
  - *    nor may "Apache" appear in their name without prior written
  - *    permission of the Apache Software Foundation.
  - *
  - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  - * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  - * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  - * SUCH DAMAGE.
  - * ====================================================================
  - *
  - * This software consists of voluntary contributions made by many
  - * individuals on behalf of the Apache Software Foundation.  For more
  - * information on the Apache Software Foundation, please see
  - * <http://www.apache.org/>.
  +/*
  + * 
  + * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * 
  + * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  + * use this file except in compliance with the License. You may obtain a copy
  + * of the License at
  + * 
  + * http://www.apache.org/licenses/LICENSE-2.0
  + * 
  + * Unless required by applicable law or agreed to in writing, software
  + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  + * License for the specific language governing permissions and limitations
  + * under the License.
  + *  
    */
   
   package org.apache.commons.math.analysis.derivative;
  
  
  
  1.3       +17 -53    jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/AbstractDifferenceDerivative.java
  
  Index: AbstractDifferenceDerivative.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/AbstractDifferenceDerivative.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AbstractDifferenceDerivative.java	29 Jan 2004 00:49:02 -0000	1.2
  +++ AbstractDifferenceDerivative.java	29 Jan 2004 16:54:04 -0000	1.3
  @@ -1,55 +1,19 @@
  -/* ====================================================================
  - * The Apache Software License, Version 1.1
  - *
  - * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
  - * reserved.
  - *
  - * Redistribution and use in source and binary forms, with or without
  - * modification, are permitted provided that the following conditions
  - * are met:
  - *
  - * 1. Redistributions of source code must retain the above copyright
  - *    notice, this list of conditions and the following disclaimer.
  - *
  - * 2. Redistributions in binary form must reproduce the above copyright
  - *    notice, this list of conditions and the following disclaimer in
  - *    the documentation and/or other materials provided with the
  - *    distribution.
  - *
  - * 3. The end-user documentation included with the redistribution, if
  - *    any, must include the following acknowledgement:
  - *       "This product includes software developed by the
  - *        Apache Software Foundation (http://www.apache.org/)."
  - *    Alternately, this acknowledgement may appear in the software itself,
  - *    if and wherever such third-party acknowledgements normally appear.
  - *
  - * 4. The names "The Jakarta Project", "Commons", and "Apache Software
  - *    Foundation" must not be used to endorse or promote products derived
  - *    from this software without prior written permission. For written
  - *    permission, please contact apache@apache.org.
  - *
  - * 5. Products derived from this software may not be called "Apache"
  - *    nor may "Apache" appear in their name without prior written
  - *    permission of the Apache Software Foundation.
  - *
  - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  - * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  - * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  - * SUCH DAMAGE.
  - * ====================================================================
  - *
  - * This software consists of voluntary contributions made by many
  - * individuals on behalf of the Apache Software Foundation.  For more
  - * information on the Apache Software Foundation, please see
  - * <http://www.apache.org/>.
  +/*
  + * 
  + * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * 
  + * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  + * use this file except in compliance with the License. You may obtain a copy
  + * of the License at
  + * 
  + * http://www.apache.org/licenses/LICENSE-2.0
  + * 
  + * Unless required by applicable law or agreed to in writing, software
  + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  + * License for the specific language governing permissions and limitations
  + * under the License.
  + *  
    */
   
   package org.apache.commons.math.analysis.derivative;
  
  
  
  1.3       +17 -53    jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/BackwardDifferenceDerivative.java
  
  Index: BackwardDifferenceDerivative.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/BackwardDifferenceDerivative.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BackwardDifferenceDerivative.java	29 Jan 2004 00:49:02 -0000	1.2
  +++ BackwardDifferenceDerivative.java	29 Jan 2004 16:54:04 -0000	1.3
  @@ -1,55 +1,19 @@
  -/* ====================================================================
  - * The Apache Software License, Version 1.1
  - *
  - * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
  - * reserved.
  - *
  - * Redistribution and use in source and binary forms, with or without
  - * modification, are permitted provided that the following conditions
  - * are met:
  - *
  - * 1. Redistributions of source code must retain the above copyright
  - *    notice, this list of conditions and the following disclaimer.
  - *
  - * 2. Redistributions in binary form must reproduce the above copyright
  - *    notice, this list of conditions and the following disclaimer in
  - *    the documentation and/or other materials provided with the
  - *    distribution.
  - *
  - * 3. The end-user documentation included with the redistribution, if
  - *    any, must include the following acknowledgement:
  - *       "This product includes software developed by the
  - *        Apache Software Foundation (http://www.apache.org/)."
  - *    Alternately, this acknowledgement may appear in the software itself,
  - *    if and wherever such third-party acknowledgements normally appear.
  - *
  - * 4. The names "The Jakarta Project", "Commons", and "Apache Software
  - *    Foundation" must not be used to endorse or promote products derived
  - *    from this software without prior written permission. For written
  - *    permission, please contact apache@apache.org.
  - *
  - * 5. Products derived from this software may not be called "Apache"
  - *    nor may "Apache" appear in their name without prior written
  - *    permission of the Apache Software Foundation.
  - *
  - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  - * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  - * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  - * SUCH DAMAGE.
  - * ====================================================================
  - *
  - * This software consists of voluntary contributions made by many
  - * individuals on behalf of the Apache Software Foundation.  For more
  - * information on the Apache Software Foundation, please see
  - * <http://www.apache.org/>.
  +/*
  + * 
  + * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * 
  + * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  + * use this file except in compliance with the License. You may obtain a copy
  + * of the License at
  + * 
  + * http://www.apache.org/licenses/LICENSE-2.0
  + * 
  + * Unless required by applicable law or agreed to in writing, software
  + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  + * License for the specific language governing permissions and limitations
  + * under the License.
  + *  
    */
   
   package org.apache.commons.math.analysis.derivative;
  
  
  
  1.3       +17 -53    jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/ForwardDifferenceDerivative.java
  
  Index: ForwardDifferenceDerivative.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/ForwardDifferenceDerivative.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ForwardDifferenceDerivative.java	29 Jan 2004 00:49:02 -0000	1.2
  +++ ForwardDifferenceDerivative.java	29 Jan 2004 16:54:04 -0000	1.3
  @@ -1,55 +1,19 @@
  -/* ====================================================================
  - * The Apache Software License, Version 1.1
  - *
  - * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
  - * reserved.
  - *
  - * Redistribution and use in source and binary forms, with or without
  - * modification, are permitted provided that the following conditions
  - * are met:
  - *
  - * 1. Redistributions of source code must retain the above copyright
  - *    notice, this list of conditions and the following disclaimer.
  - *
  - * 2. Redistributions in binary form must reproduce the above copyright
  - *    notice, this list of conditions and the following disclaimer in
  - *    the documentation and/or other materials provided with the
  - *    distribution.
  - *
  - * 3. The end-user documentation included with the redistribution, if
  - *    any, must include the following acknowledgement:
  - *       "This product includes software developed by the
  - *        Apache Software Foundation (http://www.apache.org/)."
  - *    Alternately, this acknowledgement may appear in the software itself,
  - *    if and wherever such third-party acknowledgements normally appear.
  - *
  - * 4. The names "The Jakarta Project", "Commons", and "Apache Software
  - *    Foundation" must not be used to endorse or promote products derived
  - *    from this software without prior written permission. For written
  - *    permission, please contact apache@apache.org.
  - *
  - * 5. Products derived from this software may not be called "Apache"
  - *    nor may "Apache" appear in their name without prior written
  - *    permission of the Apache Software Foundation.
  - *
  - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  - * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  - * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  - * SUCH DAMAGE.
  - * ====================================================================
  - *
  - * This software consists of voluntary contributions made by many
  - * individuals on behalf of the Apache Software Foundation.  For more
  - * information on the Apache Software Foundation, please see
  - * <http://www.apache.org/>.
  +/*
  + * 
  + * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * 
  + * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  + * use this file except in compliance with the License. You may obtain a copy
  + * of the License at
  + * 
  + * http://www.apache.org/licenses/LICENSE-2.0
  + * 
  + * Unless required by applicable law or agreed to in writing, software
  + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  + * License for the specific language governing permissions and limitations
  + * under the License.
  + *  
    */
   
   package org.apache.commons.math.analysis.derivative;
  
  
  
  1.4       +2 -4      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Sqrt.java
  
  Index: Sqrt.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Sqrt.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Sqrt.java	29 Jan 2004 16:48:48 -0000	1.3
  +++ Sqrt.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -25,10 +25,8 @@
   
   
   /**
  - * @author Administrator
  - *
  - * To change the template for this generated type comment go to
  - * Window - Preferences - Java - Code Generation - Code and Comments
  +
  +
    */
   public class Sqrt implements Evaluation, Serializable {
   
  
  
  
  1.4       +2 -4      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Multiply.java
  
  Index: Multiply.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Multiply.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Multiply.java	29 Jan 2004 16:48:48 -0000	1.3
  +++ Multiply.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -24,10 +24,8 @@
   import org.apache.commons.math.function.EvaluationException;
   
   /**
  - * @author Administrator
  - *
  - * To change the template for this generated type comment go to
  - * Window - Preferences - Java - Code Generation - Code and Comments
  +
  +
    */
   public class Multiply implements Evaluation, Serializable {
   
  
  
  
  1.4       +2 -4      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Power.java
  
  Index: Power.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Power.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Power.java	29 Jan 2004 16:48:48 -0000	1.3
  +++ Power.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -25,10 +25,8 @@
   
   
   /**
  - * @author Administrator
  - *
  - * To change the template for this generated type comment go to
  - * Window - Preferences - Java - Code Generation - Code and Comments
  +
  +
    */
   public class Power implements Evaluation, Serializable {
   
  
  
  
  1.4       +2 -4      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Equals.java
  
  Index: Equals.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Equals.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Equals.java	29 Jan 2004 16:48:48 -0000	1.3
  +++ Equals.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -24,10 +24,8 @@
   
   
   /**
  - * @author Administrator
  - *
  - * To change the template for this generated type comment go to
  - * Window - Preferences - Java - Code Generation - Code and Comments
  +
  +
    */
   public class Equals implements Evaluation, Serializable {
   
  
  
  
  1.4       +2 -4      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Divide.java
  
  Index: Divide.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Divide.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Divide.java	29 Jan 2004 16:48:48 -0000	1.3
  +++ Divide.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -24,10 +24,8 @@
   import org.apache.commons.math.function.EvaluationException;
   
   /**
  - * @author Administrator
  - *
  - * To change the template for this generated type comment go to
  - * Window - Preferences - Java - Code Generation - Code and Comments
  +
  +
    */
   public class Divide implements Evaluation, Serializable {
   
  
  
  
  1.4       +2 -4      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Add.java
  
  Index: Add.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Add.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Add.java	29 Jan 2004 16:48:48 -0000	1.3
  +++ Add.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -25,10 +25,8 @@
   import org.apache.commons.math.function.EvaluationException;
   
   /**
  - * @author Administrator
  - *
  - * To change the template for this generated type comment go to
  - * Window - Preferences - Java - Code Generation - Code and Comments
  +
  +
    */
   public class Add implements Evaluation, Serializable {
   
  
  
  
  1.4       +2 -4      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Subtract.java
  
  Index: Subtract.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Subtract.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Subtract.java	29 Jan 2004 16:48:48 -0000	1.3
  +++ Subtract.java	29 Jan 2004 16:54:04 -0000	1.4
  @@ -24,10 +24,8 @@
   import org.apache.commons.math.function.EvaluationException;
   
   /**
  - * @author Administrator
  - *
  - * To change the template for this generated type comment go to
  - * Window - Preferences - Java - Code Generation - Code and Comments
  +
  +
    */
   public class Subtract implements Evaluation, Serializable {
   
  
  
  
  1.3       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/linear/Decomposition.java
  
  Index: Decomposition.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/linear/Decomposition.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Decomposition.java	29 Jan 2004 16:48:48 -0000	1.2
  +++ Decomposition.java	29 Jan 2004 16:54:05 -0000	1.3
  @@ -18,7 +18,7 @@
   package org.apache.commons.math.linear;
   
   /**
  - * @author Administrator
  +
    *
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
  
  
  
  1.4       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/linear/Decomposer.java
  
  Index: Decomposer.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/linear/Decomposer.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Decomposer.java	29 Jan 2004 16:48:48 -0000	1.3
  +++ Decomposer.java	29 Jan 2004 16:54:05 -0000	1.4
  @@ -18,7 +18,7 @@
   package org.apache.commons.math.linear;
   
   /**
  - * @author Administrator
  +
    *
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
  
  
  
  1.3       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/linear/DecompositionFactory.java
  
  Index: DecompositionFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/linear/DecompositionFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DecompositionFactory.java	29 Jan 2004 16:48:48 -0000	1.2
  +++ DecompositionFactory.java	29 Jan 2004 16:54:05 -0000	1.3
  @@ -18,7 +18,7 @@
   package org.apache.commons.math.linear;
   
   /**
  - * @author Administrator
  +
    *
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
  
  
  
  1.3       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/DerivativeOperatorFactoryTest.java
  
  Index: DerivativeOperatorFactoryTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/DerivativeOperatorFactoryTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DerivativeOperatorFactoryTest.java	29 Jan 2004 16:48:47 -0000	1.2
  +++ DerivativeOperatorFactoryTest.java	29 Jan 2004 16:54:05 -0000	1.3
  @@ -20,7 +20,7 @@
   import junit.framework.TestCase;
   
   /**
  - * @author Administrator
  +
    *
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org