Julien Boudry
Julien Boudry
The same problem, can be reproduced here: https://www.condorcet.io/3.AsPhpLibrary/5.Votes/1.AddVotes I confirmed that it is related to the history mod.
A simple fix with a plugin: ```javascript window.$docsify = { plugins: [ function docsifyFixLogoLink(hook, vm) { hook.mounted(function () { const logoLinkTag = document.querySelector(`a.app-name-link`); logoLinkTag.setAttribute('href', '/'); }); } ] } ```...
@AlejandroMut Don't have issues with `mounted` hook, example here: https://www.condorcet.io But both must work, afterEach is just more aggressive.
But there's no documentation that says you can do this unless you read the code. This changes everything and is the usual way PHPUnit way.
I don't know if that's enough. However, CS Fixer (v3.75) has published several improvements since then. Dependency upgrades could benefit from this.
[Condorcet](https://github.com/julien-boudry/Condorcet/tree/Version/5.0) on the dev branch 5.0 has implemented most of the PHP 8.4 in many ways. It's not necessarily enough on its own, but it's a very complete benchmark. Because...
There is one here: * Code class: https://github.com/julien-boudry/Condorcet/blob/master/src/Tools/Converters/CondorcetElectionFormat.php * Usage doc: https://www.condorcet.io/3.AsPhpLibrary/8.GoFurther/4.ElectionFilesFormats But it is strongly coupled with the Condorcet library of the same project. It is therefore not a...
With the CondorcetElectionFormat, you have: Weight: `A > B ^100` # One vote with a weight of 100 Quantifier: `A > B *100` # 100 identical votes Both: `A >...
The main problem should be that Civs format uses an order to identify a candidate, but Cef format uses the candidate's name. So, the conversion should know in which order...
Is there a comment system, where I can put additional information, such as the identity of the candidates?