reintroduced modifiers needed for serialization.

This commit is contained in:
Luc Maisonobe 2015-11-02 15:47:31 +01:00
parent 0a0c5aa391
commit 254783521b
10 changed files with 10 additions and 10 deletions

View File

@ -68,7 +68,7 @@ class ClassicalRungeKuttaStepInterpolator
* interpolators by cloning an uninitialized model and latter initializing
* the copy.
*/
ClassicalRungeKuttaStepInterpolator() {
public ClassicalRungeKuttaStepInterpolator() {
}
/** Copy constructor.

View File

@ -97,7 +97,7 @@ class DormandPrince54StepInterpolator
* prototyping design pattern to create the step interpolators by
* cloning an uninitialized model and latter initializing the copy.
*/
DormandPrince54StepInterpolator() {
public DormandPrince54StepInterpolator() {
super();
v1 = null;
v2 = null;

View File

@ -227,7 +227,7 @@ class DormandPrince853StepInterpolator
* prototyping design pattern to create the step interpolators by
* cloning an uninitialized model and latter initializing the copy.
*/
DormandPrince853StepInterpolator() {
public DormandPrince853StepInterpolator() {
super();
yDotKLast = null;
v = null;

View File

@ -59,7 +59,7 @@ class EulerStepInterpolator
* to create the step interpolators by cloning an uninitialized model
* and later initializing the copy.
*/
EulerStepInterpolator() {
public EulerStepInterpolator() {
}
/** Copy constructor.

View File

@ -75,7 +75,7 @@ class GillStepInterpolator
* to create the step interpolators by cloning an uninitialized model
* and later initializing the copy.
*/
GillStepInterpolator() {
public GillStepInterpolator() {
}
/** Copy constructor.

View File

@ -107,7 +107,7 @@ class GraggBulirschStoerStepInterpolator
* This constructor should not be used directly, it is only intended
* for the serialization process.
*/
GraggBulirschStoerStepInterpolator() {
public GraggBulirschStoerStepInterpolator() {
y0Dot = null;
y1 = null;
y1Dot = null;

View File

@ -45,7 +45,7 @@ class HighamHall54StepInterpolator
* to create the step interpolators by cloning an uninitialized model
* and later initializing the copy.
*/
HighamHall54StepInterpolator() {
public HighamHall54StepInterpolator() {
super();
}

View File

@ -51,7 +51,7 @@ class LutherStepInterpolator extends RungeKuttaStepInterpolator {
* to create the step interpolators by cloning an uninitialized model
* and later initializing the copy.
*/
LutherStepInterpolator() {
public LutherStepInterpolator() {
}
/** Copy constructor.

View File

@ -61,7 +61,7 @@ class MidpointStepInterpolator
* to create the step interpolators by cloning an uninitialized model
* and later initializing the copy.
*/
MidpointStepInterpolator() {
public MidpointStepInterpolator() {
}
/** Copy constructor.

View File

@ -71,7 +71,7 @@ class ThreeEighthesStepInterpolator
* to create the step interpolators by cloning an uninitialized model
* and later initializing the copy.
*/
ThreeEighthesStepInterpolator() {
public ThreeEighthesStepInterpolator() {
}
/** Copy constructor.