TiedScores

data class TiedScores(val metric: String, val score: Double) : ModaWarning(source)

Every alternative scored the same on this metric, so its domain was widened around that common score rather than fitted to a range of zero width.

A metric that assigns every alternative the same score carries nothing that could separate them. All alternatives take the midpoint of the value range, so the metric contributes equally to each and the decision is left to the metrics that do discriminate.

Constructors

Link copied to clipboard
constructor(metric: String, score: Double)

Properties

Link copied to clipboard
open override val message: String

A description suitable for showing to a user.

Link copied to clipboard
open override val metric: String

The name of the metric the warning concerns.

Link copied to clipboard