|
@@ -79,15 +79,11 @@ public class CvrAdjustingModel extends Model {
|
|
double rowKey = cell.getRowKey();
|
|
double rowKey = cell.getRowKey();
|
|
double columnKey = cell.getColumnKey();
|
|
double columnKey = cell.getColumnKey();
|
|
if (rowKey <= score & score < columnKey) {
|
|
if (rowKey <= score & score < columnKey) {
|
|
|
|
+ LOGGER.info("score {} in {} - {} , value is {}", score, rowKey, columnKey, cell.getValue());
|
|
return cell.getValue();
|
|
return cell.getValue();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
return 1.0;
|
|
return 1.0;
|
|
}
|
|
}
|
|
-
|
|
|
|
- public static void main(String[] args) {
|
|
|
|
- System.out.println(0.5 / 0.0);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
}
|
|
}
|