Exemple #1
0
 public void removeCandidate(ElectoralCollegeDistributionType distributionType, List <int> candidateIDList)
 {
     foreach (int candidateID in candidateIDList)
     {
         List <List <int> > VotesToRedistribute = OrganizedVotes[candidateID];
         OrganizedVotes.Remove(candidateID);
         foreach (List <int> votes in VotesToRedistribute)
         {
             while (true)
             {
                 if (votes.Count > 0)
                 {
                     int        NextCandidate  = votes[0];
                     List <int> NewAlteredList = votes;
                     NewAlteredList.RemoveAt(0);
                     if (OrganizedVotes.ContainsKey(NextCandidate))
                     {
                         OrganizedVotes[NextCandidate].Add(NewAlteredList);
                         break;
                     }
                 }
                 else
                 {
                     break;
                 }
             }
         }
         Dictionary <int, int> ElctoralCollegeVotes = DistributeElectoralCollegePoints(distributionType);
         GenerateVoteDocument(ElctoralCollegeVotes);
     }
 }
Exemple #2
0
    private Dictionary <int, int> DistributeElectoralCollegePoints(ElectoralCollegeDistributionType distributionType)
    {
        int TotalNumberofVotes = 0;

        foreach (KeyValuePair <int, List <List <int> > > c in OrganizedVotes)
        {
            TotalNumberofVotes += c.Value.Count;
        }
        int remainingElectors           = Electors;
        Dictionary <int, int> FinalDict = new Dictionary <int, int>();

        if (distributionType == ElectoralCollegeDistributionType.ProportionalVote)
        {
            List <KeyValuePair <Decimal, int> > remainders = new List <KeyValuePair <Decimal, int> >();
            foreach (KeyValuePair <int, List <List <int> > > c in OrganizedVotes)
            {
                int     firstInt     = c.Key;
                Decimal a            = c.Value.Count;
                Decimal b            = TotalNumberofVotes;
                Decimal secondDouble = (a / b) * Electors;
                int     secondInt    = Convert.ToInt32(Math.Floor(secondDouble));
                FinalDict.Add(firstInt, secondInt);
                remainingElectors -= secondInt;
                KeyValuePair <decimal, int> remainderToAdd = new KeyValuePair <decimal, int>((secondDouble % 1.0m), c.Key);
                remainders.Add(remainderToAdd);
            }
            List <KeyValuePair <Decimal, int> > newRemainders = remainders.OrderByDescending(x => x.Key).ToList();
            while (remainingElectors > 0)
            {
                int currentCandidateID = newRemainders[0].Value;
                FinalDict[currentCandidateID] += 1;
                newRemainders.RemoveAt(0);
                remainingElectors -= 1;
            }
        }
        else
        {
            KeyValuePair <int, int> IDAndVotesOfMostPopularCandidate = new KeyValuePair <int, int>(-1, -1);
            foreach (KeyValuePair <int, List <List <int> > > c in OrganizedVotes)
            {
                if (c.Value.Count > IDAndVotesOfMostPopularCandidate.Value)
                {
                    IDAndVotesOfMostPopularCandidate = new KeyValuePair <int, int>(c.Key, c.Value.Count);
                }
            }
            foreach (KeyValuePair <int, List <List <int> > > c in OrganizedVotes)
            {
                if (c.Key != IDAndVotesOfMostPopularCandidate.Key)
                {
                    FinalDict.Add(c.Key, 0);
                }
                else
                {
                    FinalDict.Add(c.Key, Electors);
                }
            }
        }
        return(FinalDict);
    }
Exemple #3
0
    public void calculateCandidateElectors(ElectoralCollegeDistributionType distributionType, string CandidatePath, string StateVotePath)
    {
        StateJsonReader  reader     = new StateJsonReader();
        List <Candidate> candidates = reader.collectCandidates(CandidatePath);

        if (candidates.Count == 0)
        {
            throw new System.InvalidOperationException("There are no candidates present in this election");
        }
        List <VoterPreferences> Votes = collectTheVotes(candidates, StateVotePath);

        OrganizedVotes = OrganizeVotes(candidates, Votes);
        Votes.Clear();
        Dictionary <int, int> ElctoralCollegeVotes = DistributeElectoralCollegePoints(distributionType);

        // TestCode
        // Dictionary<int, Candidate> cans = CandidateDictionaryGenerator(candidates);
        // foreach (KeyValuePair<int, int> cPair in ElctoralCollegeVotes)
        // {
        //     Console.WriteLine(cPair.Key + " won " + cPair.Value + " votes in the great state of " + Name);
        // }
        GenerateVoteDocument(ElctoralCollegeVotes);
    }
Exemple #4
0
 public void calculateCandidateElectors(ElectoralCollegeDistributionType distributionType)
 {
     calculateCandidateElectors(distributionType, "ElectionCircumstances/Candidates.json", "StateVotes/" + Name + ".json");
 }