Source code for whalrus.ballots.ballot_plurality

# -*- coding: utf-8 -*-
"""
Copyright Sylvain Bouveret, Yann Chevaleyre and François Durand
sylvain.bouveret@imag.fr, yann.chevaleyre@dauphine.fr, fradurand@gmail.com

This file is part of Whalrus.

Whalrus is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Whalrus is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Whalrus.  If not, see <http://www.gnu.org/licenses/>.
"""
from whalrus.ballots.ballot_one_name import BallotOneName


[docs]class BallotPlurality(BallotOneName): """ A plurality ballot. Examples -------- >>> ballot = BallotPlurality('a', candidates={'a', 'b', 'c'}) >>> print(ballot) a >>> ballot = BallotPlurality(None, candidates={'a', 'b', 'c'}) >>> print(ballot) None """ # Remark: this only difference with a member of the mother class BallotOneName is precisely that here, the object # is an instance of BallotPlurality. As such, it will be treated differently in some contexts. pass