AntiSymmetricPreference |
An anti-symmetric preference is a preference who can't contains equal
alternatives.
|
ImmutableAntiSymmetricPreference |
An immutable antisymmetric preference is an antisymmetric preference (without
equal alternatives) we can't modify.
|
ImmutableCompletePreference |
An immutable preference which represents a complete pre-order, also called a
weak order. for each couple of alternatives (a,b) we can find an order a ≥ b
or b ≥ a.
|
ImmutableLinearPreference |
A linear preference is an antisymmetric complete preference.
|
ImmutablePreference |
An Immutable Preference is a preference that cannot be modified
ImmutablePreference can’t represent the case where we know that a ≥ b and
ignore whether b ≥ a.
|
MutableAntiSymmetricPreference |
|
MutableLinearPreference |
A mutable linear preference is a mutable antisymmetric complete preference.
|
MutablePreference |
A mutable preference keeps two graphs: the one representing the information
received directly from the voter, not necessarily transitive or reflexive,
given by MutablePreference.asMutableGraph() ; and the one we deduce, which is at all
times transitively closed and reflexive, given by Preference.asGraph() .
|
Preference |
Preference Interface is used to define the order chosen by a Voter between
some alternatives.
|