TotalScore

This commit is contained in:
2025-05-20 16:14:40 +03:00
parent 9eede4802e
commit e53f0ed939
3 changed files with 4 additions and 9 deletions

View File

@@ -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();

View File

@@ -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() {