| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2026-04-06 | Make the project build with Microsoft's broken C compiler. | Sebastiano Tronto | 1 | -3/+3 | |
| 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-07-29 | All coordinates unsigned | Sebastiano Tronto | 1 | -19/+20 | |
| 2025-07-29 | Optimized some coordinates | Sebastiano Tronto | 1 | -10/+12 | |
| 2025-07-28 | Tiny cleanup | Sebastiano Tronto | 1 | -1/+1 | |
| 2025-07-28 | Turns checks into assertions in utils/math.h | Sebastiano Tronto | 1 | -53/+20 | |
| 2025-07-28 | Hardcoded factorial constants | Sebastiano Tronto | 1 | -25/+4 | |
| 2025-05-27 | Removed VLA notation from function parameters. | Sebastiano Tronto | 1 | -12/+12 | |
| 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-04-19 | Improved logging, especially for solve | Sebastiano Tronto | 1 | -2/+2 | |
| 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-29 | Optimize genptable for coordinate solve (20x speedup) | Sebastiano Tronto | 1 | -0/+14 | |
| 2025-03-22 | Some safety with move arrays, small refactor appendchar | Sebastiano Tronto | 1 | -33/+32 | |
| 2024-09-05 | More renaming | Sebastiano Tronto | 1 | -4/+4 | |
| 2024-09-05 | Rename constants from _underscore to CAPS | Sebastiano Tronto | 1 | -26/+26 | |
| 2024-08-30 | Added tool for checking new tables (and they are wrong) | Sebastiano Tronto | 1 | -0/+1 | |
| 2024-08-18 | Reorganized folder structure | Sebastiano Tronto | 1 | -0/+0 | |
| 2024-07-18 | Converted set to map | Sebastiano Tronto | 1 | -0/+2 | |
| 2024-07-05 | Finished getcube | Sebastiano Tronto | 1 | -2/+4 | |
| 2024-07-05 | Added more math utilities | Sebastiano Tronto | 1 | -1/+57 | |
| 2024-07-04 | (almost) added getcube | Sebastiano Tronto | 1 | -0/+125 | |
