You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
majority-judgment-library-java/src/main/java/fr/mieuxvoter/mj/DeliberatorInterface.java

17 lines
422 B

package fr.mieuxvoter.mj;
/**
* A Deliberator takes in a poll's Tally,
* that is the amount of grades received by each Proposal,
* and outputs the poll's Result,
* that is the final rank of each Proposal.
*
* This is the main API of this library.
*
* See MajorityJudgmentDeliberator for an implementation.
*/
public interface DeliberatorInterface {
public ResultInterface deliberate(TallyInterface tally);
}