1
0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__serveur-vote-lalis/methods/schulzeResults.php
2022-09-23 20:59:12 +02:00

111 lines
1.5 KiB
PHP

<?php
class schulze
{
public int $nvotant;
public int $ncandidats;
public array $nvotes;
public array $v = array(
array(5, 1, 3, 2, 4),
array(1, 5, 2, 4, 3),
array(5, 3, 2, 4, 1),
array(5, 1, 3, 2, 4),
array(5, 3, 2, 4, 1),
);
function matrix()
{
foreach($nvotes as $votes)
{
for ($i=1;$i<=$votes;$i++)
{
for ($j=1;$j<=$ncandidats;$j++)
{
void;
}
}
}
}
function stringify($votes)
{
$r = array();
foreach($votes as $vote)
{
$r[] = implode("/", $vote);
}
return $r;
}
function votify(&$votes)
{
foreach($votes as $vote)
{
$vote["vote"] = explode("/", $vote["vote"]);
}
}
function test($v)
{
$w = array();
$i = 0;
$j = 0;
$v = $this->stringify($v);
sort($v);
print_r($v);
for($i = 0;$i < count($v) - 1;$i++)
{
$s = $v[$i];
if ($i == 0)
{
echo "i = 0\n";
$w[$s] = 1;
}
if ($s == $v[$i+1])
{
echo "egal\n";
$w[$s] += 1;
}else
{
echo "non egal\n";
$w[$s] = 1;
}
}
$w = $this->votify($w);
print_r($w);
}
function result()
{
for ($i=1;$i<=$ncandidats;$i++)
{
for ($j=1;$j<=$ncandidats;$j++)
{
if ($d[$i][$j] > $d[$j][$i])
{
$p[$i][$j] = $d[$i][$j];
}else
{
$p[$i][$j] = 0;
}
}
}
for ($i=1;$i<=$ncandidats;$i++)
{
for ($j=1;$j<=$ncandidats;$j++)
{
for ($k=1;$k<=$ncandidats;$k++)
{
if ($j != $k)
{
$p[$j][$k] = max($p[$j][$k], min($p[$j][$i],$p[$i][$k]));
}
}
}
return $p;
}
}
}
?>