| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2026-04-06 | Make the project build with Microsoft's broken C compiler. | Sebastiano Tronto | 1 | -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. | |||||
| 2025-08-05 | Added DRFIN solver | Sebastiano Tronto | 1 | -14/+39 | |
| 2025-08-01 | Reworked coordinate solver axis specification | Sebastiano Tronto | 1 | -21/+11 | |
| 2025-05-27 | Removed VLA notation from function parameters. | Sebastiano Tronto | 1 | -2/+2 | |
| 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. | |||||
| 2025-05-19 | Refactored checkdata | Sebastiano Tronto | 1 | -16/+12 | |
| 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-18 | Refactor solver dispatch and checkdata | Sebastiano Tronto | 1 | -5/+7 | |
| 2025-04-19 | Improved logging, especially for solve | Sebastiano Tronto | 1 | -1/+1 | |
| 2025-04-08 | Some minor changes to the interface. | Sebastiano Tronto | 1 | -2/+2 | |
| - 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-03-25 | More safety with pointers using VLA function parameters | Sebastiano Tronto | 1 | -1/+2 | |
| 2025-03-25 | Added NISS to coord solver | Sebastiano Tronto | 1 | -18/+0 | |
| 2025-03-22 | Some safety with move arrays, small refactor appendchar | Sebastiano Tronto | 1 | -10/+15 | |
| 2025-03-14 | Replaced datasize with solverinfo | Sebastiano Tronto | 1 | -0/+18 | |
| 2025-03-12 | Revert API change | Sebastiano Tronto | 1 | -0/+17 | |
| 2025-03-09 | Working (?) version of coordinate solver | Sebastiano Tronto | 1 | -0/+0 | |
| 2025-03-08 | renamed some files | Sebastiano Tronto | 1 | -2/+0 | |
| 2025-03-07 | More progress on coordinate solver | Sebastiano Tronto | 1 | -0/+28 | |
| 2025-03-04 | Begin work for coordinate solver | Sebastiano Tronto | 1 | -0/+20 | |
