Condorcet Election Format: Difference between revisions

From electowiki
Content added Content deleted
(Creation of the page)
 
(→‎Limitations: Fix <br>)
Line 11: Line 11:


=== Limitations ===
=== Limitations ===
* The current V1 only allows expressing votes in the form of ranking ''(ties are possible)'', which is perfect for [[Preferential voting methods]]. This is by extension compatible with methods such as single-member voting (only the first rank is taken into account), but is incompatible with very different voting methods such as majority voting or point voting.<br>
* The current V1 only allows expressing votes in the form of ranking ''(ties are possible)'', which is perfect for [[Preferential voting methods]]. This is by extension compatible with methods such as single-member voting (only the first rank is taken into account), but is incompatible with very different voting methods such as majority voting or point voting.<br> It would however be structurally possible to handle these formats but requires additional specifications.
It would however be structurally possible to handle these formats, but requires additional specifications.


* The current V1 allows specifying weights on some votes (some votes are then worth more than others), but these weights are for the moment necessarily integer numbers and not decimals.
* The current V1 allows specifying weights on some votes (some votes are then worth more than others), but these weights are for the moment necessarily integer numbers and not decimals.

Revision as of 15:29, 2 July 2022

The Condorcet Election Format is a free and standardized open election descriptor standard. Its objective is to define an election, its parameters, its candidates, and its votes. The objective of this format is to be easily written and read by a human, with the rigor and precision necessary for ingestion by a program. It is also concise because it allows (optionally) to express identical votes in one line, as well as a parameter ordering how to interpret incomplete votes.

It does not include the results of the election, because its objective is to be ingested by a program that will proceed to the calculation of the results; this format is thus intended to parameterize the election and its votes, defining precise inputs not suffering from interpretation to the program.
The Condorcet format was designed to replace other formats that are difficult to understand by a human being, poorly documented (or changing over time), and are not very precise or incomplete. Like the DavidHill format or the Debian Election format.

This is not an individual ballot format, but a format for summarizing all the data, before calculating the results. Although the vote expression format is perfectly suited for use in a ballot format. This format is intended to be extensible, so non-standard properties can be defined, they will be ignored by programs that do not support them. Since the format allows for tagging each vote, extensible use of this metadata is possible (example: voter name, electronic signature...).

Currently, only the program of management and calculation of election Condorcet PHP supports this format in ingestion but also in export.

Limitations

  • The current V1 only allows expressing votes in the form of ranking (ties are possible), which is perfect for Preferential voting methods. This is by extension compatible with methods such as single-member voting (only the first rank is taken into account), but is incompatible with very different voting methods such as majority voting or point voting.
    It would however be structurally possible to handle these formats but requires additional specifications.
  • The current V1 allows specifying weights on some votes (some votes are then worth more than others), but these weights are for the moment necessarily integer numbers and not decimals.
  • As this format is designed to describe an election but not its results. It is also not designed to represent a multiple-round election. It is however possible to use a different file per round, which normally makes sense. Or you can replay the same file, deleting the candidates eliminated in the previous rounds.
  • There is no standard format for electronic signatures on votes. However, it is possible to use the tag system to include one.

See also