aboutsummaryrefslogtreecommitdiff
path: root/src/solvers/coord/gendata.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2026-04-06Make the project build with Microsoft's broken C compiler.Sebastiano Tronto1-24/+27
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.
2025-08-05Added DRFIN solverSebastiano Tronto1-9/+57
2025-08-01Reworked coordinate solver axis specificationSebastiano Tronto1-1/+1
2025-07-30added drslice coordinateSebastiano Tronto1-7/+31
2025-07-29All coordinates unsignedSebastiano Tronto1-1/+1
2025-07-29Cleanup some TODOsSebastiano Tronto1-2/+2
2025-07-17Small optimization for coord gendataSebastiano Tronto1-5/+10
2025-05-19Refactored checkdataSebastiano Tronto1-1/+1
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.
2025-05-18Refactor solver dispatch and checkdataSebastiano Tronto1-27/+8
2025-04-21Always use unsigned char * for data buffersSebastiano Tronto1-27/+27
Before this commit I was inconsistently using one of void *, char * and uint8_t *.
2025-04-19Improved logging, especially for solveSebastiano Tronto1-4/+5
2025-04-08Some minor changes to the interface.Sebastiano Tronto1-1/+1
- Simplified logger to accept only a string, not a variadic list of args like printf(). This can still use some improvement, but now it is easier to use from other languages. - Fixed some misuses of the logger (wrong types etc) - Renamed some constants - Fixed some typos in comments.
2025-04-02Added dreo coordinate solverSebastiano Tronto1-0/+11
2025-03-29Optimize genptable for coordinate solve (20x speedup)Sebastiano Tronto1-13/+91
2025-03-28DR coordinate solverSebastiano Tronto1-13/+41
2025-03-25More safety with pointers using VLA function parametersSebastiano Tronto1-8/+24
2025-03-22Some safety with move arrays, small refactor appendcharSebastiano Tronto1-2/+2
2025-03-14Added checkdata for coord EOSebastiano Tronto1-0/+24
2025-03-12Revert API changeSebastiano Tronto1-1/+1
2025-03-09Working (?) version of coordinate solverSebastiano Tronto1-15/+15
2025-03-08renamed some filesSebastiano Tronto1-0/+0
2025-03-07More progress on coordinate solverSebastiano Tronto1-6/+8
2025-03-04Begin work for coordinate solverSebastiano Tronto1-0/+134

Generated with cgit - Back to sebastiano.tronto.net