aboutsummaryrefslogtreecommitdiff
path: root/src/solvers/dispatch.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make the project build with Microsoft's broken C compiler.Sebastiano Tronto2026-04-061-2/+2
| | | | | | | | | | | | | MSVC is not fully C11-compliant, even when compiling with /std:c11. Some changes were needed to make the codebase compatible. Notably, the notation a[static N] and a[n] for function parameters of array type is not supported, so that had to be hidden behind a macro. Atomic types are also an experimental feature, apparently, but at least they work with the correct compiler flag. One thing that MSVC does well, however, is warning on integer conversions on /W4 level. I am not sure if Clang and GCC have something similar, so I took this chance to fix some of these.
* Added cornersx solverSebastiano Tronto2025-12-231-0/+1
|
* Add coordinate solvers for cornersh48-corner-estimateSebastiano Tronto2025-12-191-0/+1
|
* Cleanup, update documentation, fix examplesSebastiano Tronto2025-12-141-1/+1
|
* Intertwined table seems to workSebastiano Tronto2025-12-141-1/+1
|
* Added solver aliasesSebastiano Tronto2025-08-071-7/+39
|
* Added DRFIN solverSebastiano Tronto2025-08-051-1/+8
|
* Removed VLA notation from function parameters.Sebastiano Tronto2025-05-271-1/+1
| | | | | I found out that this gives undefined behavior when then size is 0. Better not to have it at all, it is confusing for other developers anyway.
* Refactored checkdataSebastiano Tronto2025-05-191-1/+5
| | | | | | | | Relevant changes include: - Changed the signature of nissy_checkdata(). - Removed expected_distribution.h from tools; this data is now included in each solver's src/ code. - Removed distribution check for cocsep; may add back later.
* Refactor solver dispatch and checkdataSebastiano Tronto2025-05-181-0/+49

Generated with cgit - Back to sebastiano.tronto.net