From 11c699ee5285c11cfbde8862d9701f3a641d6114 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 12 May 2017 21:38:06 +1000 Subject: Refactored Transfer_Votes function --- src/election.ads | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/election.ads') diff --git a/src/election.ads b/src/election.ads index 7d931bc..3da5e5a 100644 --- a/src/election.ads +++ b/src/election.ads @@ -3,6 +3,7 @@ with Candidates.Containers; with Bundles.Containers; private with Ada.Containers.Vectors; +private with Rationals; -- This source is licensed under Creative Commons CC0 v1.0. @@ -62,6 +63,7 @@ private type Pending_Transfer is record From : Candidates.CandidateID; Position : Positive; + Value : Rationals.Fraction; end record; -- cgit