Package org.ujmp.core.benchmark
Class BenchmarkResult
- java.lang.Object
-
- org.ujmp.core.benchmark.BenchmarkResult
-
public class BenchmarkResult extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private double
difference
static BenchmarkResult
ERROR
private long
mem
static BenchmarkResult
NOTAVAILABLE
private double
time
-
Constructor Summary
Constructors Constructor Description BenchmarkResult(double time, double difference, long mem)
BenchmarkResult(double time, long mem)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getDifference()
long
getMem()
double
getTime()
void
setDifference(double difference)
void
setMem(long mem)
void
setTime(double time)
-
-
-
Field Detail
-
NOTAVAILABLE
public static final BenchmarkResult NOTAVAILABLE
-
ERROR
public static final BenchmarkResult ERROR
-
time
private double time
-
difference
private double difference
-
mem
private long mem
-
-