public class InstanceResultXml
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
int |
iterations
Iterations used to solve the problem.
|
double |
lowerBound
Lower bound of the problem.
|
int |
QPs
QPs required to solve the problem.
|
double |
rootRelaxation |
long |
seed
Seed corresponding to the instance.
|
long |
time
Time used to solve the problem.
|
double |
upperBound
Upper bound of the problem.
|
Modifier | Constructor and Description |
---|---|
|
InstanceResultXml()
Default constructor.
|
protected |
InstanceResultXml(long seed,
long time,
int iterations,
int QPs,
double upperBound,
double lowerBound,
double rootRelaxation)
Constructor by parameters.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
int |
hashCode() |
public long seed
public long time
public int iterations
public int QPs
public double upperBound
public double lowerBound
public double rootRelaxation
public InstanceResultXml()
protected InstanceResultXml(long seed, long time, int iterations, int QPs, double upperBound, double lowerBound, double rootRelaxation)
seed
- The seed of the random number generator. time
- The time used to solve the problem. iterations
- The number of iterations used to solve the problem. QPs
- The number of QPs used to solve the problem. upperBound
- The upper bound on the solution. lowerBound
- The lower bound on the solution.rootRelaxation
- The root relaxation.