177 lines
4.7 KiB
HTML
177 lines
4.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>pyRCV2</title>
|
|
<style type="text/css">
|
|
html, body {
|
|
font-family: 'Liberation Sans', FreeSans, Helvetica, Arial, sans-serif;
|
|
}
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
td {
|
|
padding: 0px 8px;
|
|
min-height: 1em;
|
|
}
|
|
td.count {
|
|
text-align: right;
|
|
}
|
|
tr:first-child td {
|
|
vertical-align: bottom;
|
|
}
|
|
td.excluded {
|
|
background-color: #fecfcfff;
|
|
}
|
|
td.elected {
|
|
background-color: #d1fca7ff;
|
|
}
|
|
tr.info td {
|
|
background-color: #edededff;
|
|
}
|
|
i.sep::after {
|
|
content: "•";
|
|
color: #ccc;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<input type="file" id="bltFile">
|
|
<button onclick="clickCount()">Count</button>
|
|
<i class="sep"></i>
|
|
<label>
|
|
Preset:
|
|
<select id="selPreset" onchange="changePreset()">
|
|
<option value="scottish" selected>Scottish STV</option>
|
|
<option value="stvc">pyRCV STV-C</option>
|
|
<option value="senate">Australian Senate STV</option>
|
|
<option value="wright">Wright STV</option>
|
|
<option value="prsa77">PRSA 1977</option>
|
|
</select>
|
|
</label>
|
|
<button id="btnAdvancedOptions" onclick="clickAdvancedOptions()">Show advanced options</button>
|
|
<!--GITREV-->
|
|
<a href="https://yingtongli.me/blog/2020/12/24/pyrcv2.html">Information and instructions</a>
|
|
</div>
|
|
|
|
<div id="divAdvancedOptions" style="display: none;">
|
|
<label>
|
|
Quota:
|
|
<select id="selQuotaCriterion">
|
|
<option value="geq" selected>>=</option>
|
|
<option value="gt">></option>
|
|
</select>
|
|
</label>
|
|
<label>
|
|
<select id="selQuota">
|
|
<option value="droop" selected>Droop</option>
|
|
<option value="droop_exact">Droop (exact)</option>
|
|
<option value="hare">Hare</option>
|
|
<option value="hare_exact">Hare (exact)</option>
|
|
</select>
|
|
</label>
|
|
<i class="sep"></i>
|
|
<label>
|
|
<input type="checkbox" id="chkProgQuota">
|
|
Progressive quota
|
|
</label>
|
|
<i class="sep"></i>
|
|
<label>
|
|
<input type="checkbox" id="chkBulkElection" checked>
|
|
Bulk election
|
|
</label>
|
|
<label style="display: none;">
|
|
<input type="checkbox" id="chkBulkExclusion">
|
|
Bulk exclusion (NYI)
|
|
</label>
|
|
<br>
|
|
<label>
|
|
Numbers:
|
|
<select id="selNumbers">
|
|
<option value="native">Native</option>
|
|
<option value="rational">Rational</option>
|
|
<option value="fixed" selected>Fixed</option>
|
|
</select>
|
|
</label>
|
|
<i class="sep"></i>
|
|
<label>
|
|
Decimal places (if Numbers = Fixed):
|
|
<input type="number" id="txtDP" value="5" style="width: 3em;">
|
|
</label>
|
|
<i class="sep"></i>
|
|
<label>
|
|
<input type="checkbox" id="chkRoundVotes">
|
|
Round votes to
|
|
</label>
|
|
<label>
|
|
<input type="number" id="txtRoundVotes" value="0" style="width: 3em;">
|
|
d.p.
|
|
</label>
|
|
<i class="sep"></i>
|
|
<label>
|
|
<input type="checkbox" id="chkRoundWeights">
|
|
Round ballot weights to
|
|
</label>
|
|
<label>
|
|
<input type="number" id="txtRoundWeights" value="0" style="width: 3em;">
|
|
d.p.
|
|
</label>
|
|
<br>
|
|
<label>
|
|
Surplus order:
|
|
<select id="selSurplus">
|
|
<option value="size" selected>By size</option>
|
|
<option value="order">By order</option>
|
|
</select>
|
|
</label>
|
|
<i class="sep"></i>
|
|
<label>
|
|
Method:
|
|
<select id="selTransfers">
|
|
<option value="wig" selected>Weighted inclusive Gregory</option>
|
|
<option value="uig">Unweighted inclusive Gregory</option>
|
|
<option value="eg">Exclusive Gregory (last bundle)</option>
|
|
<option value="wright">Wright STV</option>
|
|
</select>
|
|
</label>
|
|
<label>
|
|
<select id="selPapers">
|
|
<option value="both" selected>Include non-transferable papers</option>
|
|
<option value="transferable">Use transferable papers only</option>
|
|
</select>
|
|
</label>
|
|
<label>
|
|
<select id="selExclusion">
|
|
<option value="one_round" selected>Exclude in one round</option>
|
|
<option value="parcels_by_order">Exclude by parcel (by order)</option>
|
|
<!--<option value="parcels_by_value">Exclude by parcel (by value)</option>-->
|
|
<option value="by_value">Exclude by value</option>
|
|
</select>
|
|
</label>
|
|
<br>
|
|
<label>
|
|
Ties:
|
|
<select id="selTies">
|
|
<option value="backwards_random" selected>Backwards then random</option>
|
|
<option value="random">Random</option>
|
|
<option value="prompt">Prompt</option>
|
|
</select>
|
|
</label>
|
|
<i class="sep"></i>
|
|
<label>
|
|
Random seed:
|
|
<input type="text" id="txtSeed" value="">
|
|
</label>
|
|
</div>
|
|
|
|
<table id="result"></table>
|
|
|
|
<script src="vendor/BigInt_BigRat-a5f89e2.min.js"></script>
|
|
<script src="vendor/big-6.0.0.min.js"></script>
|
|
<script src="vendor/sjcl-1.0.8.min.js"></script>
|
|
<script src="bundle.js"></script>
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html>
|