<h3>Get a ranking without "custom_tag_One" & "custom_tag_Two" tags and display Kemeny-Young result but don't delete it</h3>

	 <pre>
	<?php 
$options = array('tags' => array('custom_tag_One', 'custom_tag_Two'), 'withTag' => false);
Condorcet::format($election->getResult('KemenyYoung', $options));
?>
	 </pre>
<div style="clear:both;"></div>

	<h3>Delete vote with "custom_tag_One" & "custom_tag_Two" tags and display Kemeny-Young  result</h3> <?php 
// you can also delete vote without this tag, read the doc ( tips: removeVote('custom_tag_One', false) )
?>

	<?php 
$election->removeVote(array('custom_tag_One', 'custom_tag_Two'));
?>


	 <pre>
	<?php 
Condorcet::format($election->getResult('KemenyYoung'));
?>
	 </pre>


	<h3>Check the new vote list</h3>
<?php 
foreach ($election->getVotesList() as $vote) {
    echo '<div class="votant">';
    echo '<strong style="color:green;">' . implode(' / ', $vote->getTags()) . '</strong><br>';