TotalScore
This commit is contained in:
@@ -29,7 +29,7 @@ public class PredictorStatistics extends DBObject {
|
||||
@Expose
|
||||
public long PS_AcrossCount = statNaN;
|
||||
@Expose
|
||||
public long Rank = rankNaN;
|
||||
public long TotalScore = rankNaN;
|
||||
///---------------------------------------------
|
||||
@Description("DEFAULT ''")
|
||||
public String last_version = "";
|
||||
@@ -58,7 +58,7 @@ public class PredictorStatistics extends DBObject {
|
||||
PS_ReductionCount = Integer.parseInt(splited[6]);
|
||||
PS_AcrossCount = Integer.parseInt(splited[7]);
|
||||
try {
|
||||
Rank = Integer.parseInt(splited[8]);
|
||||
TotalScore = Integer.parseInt(splited[8]);
|
||||
} catch (Exception ignore) {
|
||||
}
|
||||
PredictionTime = new Date().getTime();
|
||||
|
||||
@@ -114,7 +114,7 @@ public class ParallelVariantsForm extends DataSetControlForm<ParallelVariant> {
|
||||
new ColumnInfo<ParallelVariant>("Оценка") {
|
||||
@Override
|
||||
public Object getFieldAt(ParallelVariant object) {
|
||||
return object.stats.Rank;
|
||||
return object.stats.TotalScore;
|
||||
}
|
||||
@Override
|
||||
public Class getRendererClass() {
|
||||
|
||||
Reference in New Issue
Block a user