Exemple #1
0
  def __init__(self, b):
    NoSurplusSTV.__init__(self, b)
    MethodPlugin.__init__(self)

    self.stopCond = ["N"]
    self.batchElimination = "None"
    self.unranked = []
Exemple #2
0
  def __init__(self, b):
    NoSurplusSTV.__init__(self, b)
    MethodPlugin.__init__(self)

    self.stopCond = ["N"]
    self.batchElimination = "None"
    self.unranked = []
Exemple #3
0
 def __init__(self, b):
   WeightedInclusiveSTV.__init__(self, b)
   MethodPlugin.__init__(self)
   
   self.prec = 5
   self.threshName = ["Droop", "Static", "Whole"]
   self.delayedTransfer = "Off"
   self.batchElimination = "None"
Exemple #4
0
    def __init__(self, b):
        WeightedInclusiveSTV.__init__(self, b)
        MethodPlugin.__init__(self)

        self.prec = 5
        self.threshName = ["Droop", "Static", "Whole"]
        self.delayedTransfer = "Off"
        self.batchElimination = "None"
Exemple #5
0
 def __init__(self, b):
   # Note: we're deliberate bypassing MeekSTV.__init__ here
   # because we don't want any UI options
   RecursiveSTV.__init__(self, b)
   MethodPlugin.__init__(self)
   self.weakTieBreakMethod = "forward" # per clauses 19, 34 & 40
   self.prec = 9                       # per clause 5
   self.prng_cands = {}
Exemple #6
0
 def __init__(self, b):
     # Note: we're deliberate bypassing MeekSTV.__init__ here
     # because we don't want any UI options
     RecursiveSTV.__init__(self, b)
     MethodPlugin.__init__(self)
     self.weakTieBreakMethod = "forward"  # per clauses 19, 34 & 40
     self.prec = 9  # per clause 5
     self.prng_cands = {}
Exemple #7
0
    def __init__(self, b):
        WeightedInclusiveSTV.__init__(self, b)
        MethodPlugin.__init__(self)

        self.prec = 4
        self.threshName = ["Droop", "Static", "Whole"]
        self.delayedTransfer = "On"
        self.batchElimination = "Losers"
        self.weakTieBreakMethod = "strong"
Exemple #8
0
 def __init__(self, b):
   GregorySTV.__init__(self, b)
   MethodPlugin.__init__(self)
   
   self.prec = 2
   self.weakTieBreakMethod = "forward"
   self.threshName = ["Droop", "Static", "Whole"]
   self.delayedTransfer = "On"
   self.batchElimination = "Losers"
Exemple #9
0
    def __init__(self, b):
        WeightedInclusiveSTV.__init__(self, b)
        MethodPlugin.__init__(self)

        self.prec = 4
        self.threshName = ["Droop", "Static", "Whole"]
        self.delayedTransfer = "On"
        self.batchElimination = "Losers"
        self.weakTieBreakMethod = "strong"
Exemple #10
0
    def __init__(self, b):
        GregorySTV.__init__(self, b)
        MethodPlugin.__init__(self)

        self.prec = 2
        self.weakTieBreakMethod = "forward"
        self.threshName = ["ERS97", "Dynamic", "Fractional"]
        self.delayedTransfer = "On"
        self.batchElimination = "LosersERS97"
        self.numStages = 0
Exemple #11
0
  def __init__(self, b):
    OrderDependentSTV.__init__(self, b)
    MethodPlugin.__init__(self)

    self.threshName = ["Droop", "Static", "Whole"]
    self.delayedTransfer = "Off"
    self.batchElimination = "Zero"
    self.batchCutoff = 50
    self.createGuiOptions(["thresh0", "thresh1", "delayedTransfer",
                          "batchElimination", "batchCutoff"])
Exemple #12
0
 def __init__(self, b):    
   GregorySTV.__init__(self, b)
   MethodPlugin.__init__(self)
   
   self.prec = 2
   self.weakTieBreakMethod = "forward"
   self.threshName = ["ERS97", "Dynamic", "Fractional"]
   self.delayedTransfer = "On"
   self.batchElimination = "LosersERS97"
   self.numStages = 0
Exemple #13
0
  def __init__(self, b):
    NonIterative.__init__(self, b)
    MethodPlugin.__init__(self)

    self.completion = "Schwartz Sequential Dropping"
    self.createGuiOptions(["completionMethod"])
    self.e = None
    self.smithSet = []
    self.SSDinfo = ""
    self.pMat = []
    self.dMat = []
Exemple #14
0
    def __init__(self, b):
        OrderDependentSTV.__init__(self, b)
        MethodPlugin.__init__(self)

        self.batchElimination = "Cutoff"
        self.batchCutoff = 50
        self.threshName = ["Droop", "Static", "Whole"]
        self.delayedTransfer = "Off"
        self.saveWinnersBallots = False
        self.outputDir = None
        self.createGuiOptions(["saveWinnersBallots"])
Exemple #15
0
 def __init__(self, b):
   OrderDependentSTV.__init__(self, b)
   MethodPlugin.__init__(self)
   
   self.batchElimination = "Cutoff"
   self.batchCutoff = 50
   self.threshName = ["Droop", "Static", "Whole"]
   self.delayedTransfer = "Off"
   self.saveWinnersBallots = False
   self.outputDir = None
   self.createGuiOptions(["saveWinnersBallots"])
Exemple #16
0
    def __init__(self, b):
        NonIterative.__init__(self, b)
        MethodPlugin.__init__(self)

        self.completion = "Schwartz Sequential Dropping"
        self.createGuiOptions(["completionMethod"])
        self.e = None
        self.smithSet = []
        self.SSDinfo = ""
        self.pMat = []
        self.dMat = []
Exemple #17
0
    def __init__(self, b):
        OrderDependentSTV.__init__(self, b)
        MethodPlugin.__init__(self)

        self.threshName = ["Droop", "Static", "Whole"]
        self.delayedTransfer = "Off"
        self.batchElimination = "Zero"
        self.batchCutoff = 50
        self.createGuiOptions([
            "thresh0", "thresh1", "delayedTransfer", "batchElimination",
            "batchCutoff"
        ])
Exemple #18
0
  def __init__(self, b):
    WeightedInclusiveSTV.__init__(self, b)
    MethodPlugin.__init__(self)

    self.prec = 6
    self.threshName = ["Droop", "Static", "Whole"]
    self.delayedTransfer = "Off"
    self.batchElimination = "Zero"
    self.batchCutoff = 0
    self.createGuiOptions(["prec", "thresh0", "thresh1", "thresh2",
                          "delayedTransfer", "batchElimination",
                          "batchCutoff"])
Exemple #19
0
 def __init__(self, b):
   WeightedInclusiveSTV.__init__(self, b)
   MethodPlugin.__init__(self)
   
   self.prec = 5
   self.weakTieBreakMethod = "strong"	# treat all ties as strong
   self.threshName = ["Droop", "Static", "Fractional"]
   self.delayedTransfer = "Off"
   self.batchElimination = "Zero"
   # Election is over when we have enough winners or all candidates
   # have been eliminated.
   self.stopCond = ["Know Winners", "Continuing Empty"]
Exemple #20
0
    def __init__(self, b):
        WeightedInclusiveSTV.__init__(self, b)
        MethodPlugin.__init__(self)

        self.prec = 6
        self.threshName = ["Droop", "Static", "Whole"]
        self.delayedTransfer = "Off"
        self.batchElimination = "Zero"
        self.batchCutoff = 0
        self.createGuiOptions([
            "prec", "thresh0", "thresh1", "thresh2", "delayedTransfer",
            "batchElimination", "batchCutoff"
        ])
Exemple #21
0
 def __init__(self, b):
   Iterative.__init__(self, b)
   MethodPlugin.__init__(self)
   self.threshName = ["Droop", "Dynamic", "Fractional"]
   self.prec = 10
   self.weakTieBreakMethod = "strong"  # treat all ties as strong
   self.optRestart = True              # option: restart after exclusion
   self.stopCond = ["Continuing Empty"]
   self.va = []         # va[r] is number of active ballots at round r
   self.vc = []         # vc[r][c] is candidate c's votes at round r
   # satisfy reporter
   self.exhausted = []
   self.surplus = []
   self.tc = []         # tc[r][c] is candidate c's ballots' contributions at round r
   self.tx = []         # tx[r] is contribution of inactive ballots at round r
   self.thresh = []     # thresh[r] is the winning quota at round r
   self.votes = []      # votes[c] stores the indices of all votes for candidate c.
   self.restart = False
Exemple #22
0
 def __init__(self, b):
     Iterative.__init__(self, b)
     MethodPlugin.__init__(self)
     self.threshName = ["Droop", "Dynamic", "Fractional"]
     self.prec = 10
     self.weakTieBreakMethod = "strong"  # treat all ties as strong
     self.optRestart = True  # option: restart after exclusion
     self.stopCond = ["Continuing Empty"]
     self.va = []  # va[r] is number of active ballots at round r
     self.vc = []  # vc[r][c] is candidate c's votes at round r
     # satisfy reporter
     self.exhausted = []
     self.surplus = []
     self.tc = [
     ]  # tc[r][c] is candidate c's ballots' contributions at round r
     self.tx = []  # tx[r] is contribution of inactive ballots at round r
     self.thresh = []  # thresh[r] is the winning quota at round r
     self.votes = [
     ]  # votes[c] stores the indices of all votes for candidate c.
     self.restart = False
Exemple #23
0
 def __init__(self, b):
   Iterative.__init__(self, b)
   MethodPlugin.__init__(self)
   self.prec = 0
Exemple #24
0
 def __init__(self, b):
   RecursiveSTV.__init__(self, b)
   MethodPlugin.__init__(self)
   self.createGuiOptions(["prec", "thresh0", "thresh1", "thresh2"])
Exemple #25
0
    def __init__(self, b):
        NonIterative.__init__(self, b)
        MethodPlugin.__init__(self)

        self.createGuiOptions([])
Exemple #26
0
    def __init__(self, b):
        RecursiveSTV.__init__(self, b)
        MethodPlugin.__init__(self)

        self.createGuiOptions(["prec", "thresh0", "thresh1", "thresh2"])
Exemple #27
0
    def __init__(self, b):
        NonIterative.__init__(self, b)
        MethodPlugin.__init__(self)

        self.ballotCompletion = "Off"
        self.createGuiOptions(["ballotCompletion"])
Exemple #28
0
    def __init__(self, b):
        RecursiveQXSTV.__init__(self, b)
        MethodPlugin.__init__(self)

        self.createGuiOptions(["prec"])
Exemple #29
0
    def __init__(self, b):
        NonIterative.__init__(self, b)
        MethodPlugin.__init__(self)

        self.createGuiOptions([])
Exemple #30
0
 def __init__(self, b):
     NonIterative.__init__(self, b)
     MethodPlugin.__init__(self)
Exemple #31
0
 def __init__(self, b):
     NoSurplusSTV.__init__(self, b)
     MethodPlugin.__init__(self)
  def __init__(self, b):
    NoSurplusSTV.__init__(self, b)
    MethodPlugin.__init__(self)

    self.batchElimination = "Losers"
    self.weakTieBreakMethod = "strong"
Exemple #33
0
 def __init__(self, b):
   NonIterative.__init__(self, b)
   MethodPlugin.__init__(self)
Exemple #34
0
 def __init__(self, b): 
   RecursiveQXSTV.__init__(self, b)
   MethodPlugin.__init__(self)
   
   self.createGuiOptions(["prec"])
Exemple #35
0
 def __init__(self, b):
   Iterative.__init__(self, b)
   MethodPlugin.__init__(self)
   self.prec = 0
Exemple #36
0
  def __init__(self, b):
    NonIterative.__init__(self, b)
    MethodPlugin.__init__(self)

    self.ballotCompletion = "Off"
    self.createGuiOptions(["ballotCompletion"])
Exemple #37
0
    def __init__(self, b):
        NoSurplusSTV.__init__(self, b)
        MethodPlugin.__init__(self)

        self.batchElimination = "Zero"
Exemple #38
0
 def __init__(self, b):
   NoSurplusSTV.__init__(self, b)
   MethodPlugin.__init__(self)
Exemple #39
0
  def __init__(self, b):
    NoSurplusSTV.__init__(self, b)
    MethodPlugin.__init__(self)

    self.batchElimination = "Zero"