Author: luc
Date: Thu Oct 16 05:49:13 2008
New Revision: 705231
URL: http://svn.apache.org/viewvc?rev=705231&view=rev
Log:
added missing serialVersionUID
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/estimation/WeightedMeasurement.java
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/AbstractIntegrator.java
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/AdaptiveStepsizeIntegrator.java
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/EmbeddedRungeKuttaIntegrator.java
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/MultistepIntegrator.java
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/RungeKuttaIntegrator.java
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/random/AbstractRandomGenerator.java
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/util/CompositeFormat.java
commons/proper/math/branches/MATH_2_0/src/test/org/apache/commons/math/ode/nonstiff/TestProblemAbstract.java
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/estimation/WeightedMeasurement.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/estimation/WeightedMeasurement.java?rev=705231&r1=705230&r2=705231&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/estimation/WeightedMeasurement.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/estimation/WeightedMeasurement.java
Thu Oct 16 05:49:13 2008
@@ -51,7 +51,10 @@
public abstract class WeightedMeasurement implements Serializable {
- /**
+ /** Serializable version identifier. */
+ private static final long serialVersionUID = 4360046376796901941L;
+
+ /**
* Simple constructor.
* Build a measurement with the given parameters, and set its ignore
* flag to false.
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/AbstractIntegrator.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/AbstractIntegrator.java?rev=705231&r1=705230&r2=705231&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/AbstractIntegrator.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/AbstractIntegrator.java
Thu Oct 16 05:49:13 2008
@@ -33,6 +33,9 @@
*/
public abstract class AbstractIntegrator implements FirstOrderIntegrator {
+ /** Serializable version identifier. */
+ private static final long serialVersionUID = 5771479854166853494L;
+
/** Name of the method. */
private final String name;
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/AdaptiveStepsizeIntegrator.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/AdaptiveStepsizeIntegrator.java?rev=705231&r1=705230&r2=705231&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/AdaptiveStepsizeIntegrator.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/AdaptiveStepsizeIntegrator.java
Thu Oct 16 05:49:13 2008
@@ -54,6 +54,9 @@
public abstract class AdaptiveStepsizeIntegrator
extends AbstractIntegrator {
+ /** Serializable version identifier. */
+ private static final long serialVersionUID = -6883579828273958419L;
+
/** Build an integrator with the given stepsize bounds.
* The default step handler does nothing.
* @param name name of the method
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/EmbeddedRungeKuttaIntegrator.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/EmbeddedRungeKuttaIntegrator.java?rev=705231&r1=705230&r2=705231&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/EmbeddedRungeKuttaIntegrator.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/EmbeddedRungeKuttaIntegrator.java
Thu Oct 16 05:49:13 2008
@@ -65,6 +65,9 @@
public abstract class EmbeddedRungeKuttaIntegrator
extends AdaptiveStepsizeIntegrator {
+ /** Serializable version identifier. */
+ private static final long serialVersionUID = -8436701741819010959L;
+
/** Build a Runge-Kutta integrator with the given Butcher array.
* @param name name of the method
* @param fsal indicate that the method is an <i>fsal</i>
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/MultistepIntegrator.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/MultistepIntegrator.java?rev=705231&r1=705230&r2=705231&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/MultistepIntegrator.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/MultistepIntegrator.java
Thu Oct 16 05:49:13 2008
@@ -46,6 +46,9 @@
*/
public abstract class MultistepIntegrator extends AbstractIntegrator {
+ /** Serializable version identifier. */
+ private static final long serialVersionUID = -1705864253238417163L;
+
/** Starter integrator. */
private FirstOrderIntegrator starter;
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/RungeKuttaIntegrator.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/RungeKuttaIntegrator.java?rev=705231&r1=705230&r2=705231&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/RungeKuttaIntegrator.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/nonstiff/RungeKuttaIntegrator.java
Thu Oct 16 05:49:13 2008
@@ -54,6 +54,9 @@
public abstract class RungeKuttaIntegrator extends AbstractIntegrator {
+ /** Serializable version identifier. */
+ private static final long serialVersionUID = -5346558921715095559L;
+
/** Simple constructor.
* Build a Runge-Kutta integrator with the given
* step. The default step handler does nothing.
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/random/AbstractRandomGenerator.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/random/AbstractRandomGenerator.java?rev=705231&r1=705230&r2=705231&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/random/AbstractRandomGenerator.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/random/AbstractRandomGenerator.java
Thu Oct 16 05:49:13 2008
@@ -32,6 +32,9 @@
*/
public abstract class AbstractRandomGenerator implements RandomGenerator {
+ /** Serializable version identifier. */
+ private static final long serialVersionUID = 7026539017027693474L;
+
/**
* Cached random normal value. The default implementation for
* [EMAIL PROTECTED] #nextGaussian} generates pairs of values and this
field caches the
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/util/CompositeFormat.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/util/CompositeFormat.java?rev=705231&r1=705230&r2=705231&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/util/CompositeFormat.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/util/CompositeFormat.java
Thu Oct 16 05:49:13 2008
@@ -30,6 +30,9 @@
*/
public abstract class CompositeFormat extends Format {
+ /** Serializable version identifier. */
+ private static final long serialVersionUID = 5358685519349262494L;
+
/**
* Create a default number format. The default number format is based on
* [EMAIL PROTECTED] NumberFormat#getInstance()} with the only customizing
that the
Modified:
commons/proper/math/branches/MATH_2_0/src/test/org/apache/commons/math/ode/nonstiff/TestProblemAbstract.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/test/org/apache/commons/math/ode/nonstiff/TestProblemAbstract.java?rev=705231&r1=705230&r2=705231&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/test/org/apache/commons/math/ode/nonstiff/TestProblemAbstract.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/test/org/apache/commons/math/ode/nonstiff/TestProblemAbstract.java
Thu Oct 16 05:49:13 2008
@@ -27,6 +27,9 @@
public abstract class TestProblemAbstract
implements FirstOrderDifferentialEquations, Cloneable {
+ /** Serializable version identifier. */
+ private static final long serialVersionUID = -8521928974502839379L;
+
/** Dimension of the problem. */
protected int n;