Class RunRecord
- java.lang.Object
-
- org.aksw.limes.core.evaluation.quantitativeMeasures.RunRecord
-
public class RunRecord extends Object
The class represents the structure of run record where the run quantitative information are recorded- Since:
- 1.0
- Version:
- 1.0
- Author:
- Mofeed Hassan (mounir@informatik.uni-leipzig.de)
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RunRecordclone()booleanequals(Object run)doublegetLinkSpecSize()doublegetLinkSpecSizeVariance()longgetRunId()doublegetRunMemory()doublegetRunMemoryVariance()doublegetRunTime()doublegetRunTimeVariance()voidsetLinkSpecSize(double linkSpecSize)voidsetLinkSpecSizeVariance(double linkSpecSizeVariance)voidsetRunId(long runId)voidsetRunMemory(double runMemory)voidsetRunMemoryVariance(double runMemoryVariance)voidsetRunTime(double runTime)voidsetRunTimeVariance(double runTimeVariance)StringtoString()
-
-
-
Constructor Detail
-
RunRecord
public RunRecord()
-
RunRecord
public RunRecord(long runId, double runTime)- Parameters:
runId- the id of the runrunTime- the time duration recorded by the run
-
RunRecord
public RunRecord(long runId, double runTime, double runMemory)- Parameters:
runId- the id of the runrunTime- the time duration recorded by the runrunMemory- the size of the utilized memory
-
RunRecord
public RunRecord(long runId, double runTime, double runMemory, double linkSpecSize)
-
-
Method Detail
-
getRunId
public long getRunId()
-
setRunId
public void setRunId(long runId)
-
getRunTime
public double getRunTime()
-
setRunTime
public void setRunTime(double runTime)
-
getRunMemory
public double getRunMemory()
-
setRunMemory
public void setRunMemory(double runMemory)
-
getLinkSpecSize
public double getLinkSpecSize()
-
setLinkSpecSize
public void setLinkSpecSize(double linkSpecSize)
-
getRunTimeVariance
public double getRunTimeVariance()
-
setRunTimeVariance
public void setRunTimeVariance(double runTimeVariance)
-
getRunMemoryVariance
public double getRunMemoryVariance()
-
setRunMemoryVariance
public void setRunMemoryVariance(double runMemoryVariance)
-
getLinkSpecSizeVariance
public double getLinkSpecSizeVariance()
-
setLinkSpecSizeVariance
public void setLinkSpecSizeVariance(double linkSpecSizeVariance)
-
-