| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Make the project build with Microsoft's broken C compiler. | Sebastiano Tronto | 2026-04-06 | 1 | -1/+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. | ||||
| * | Improvements to build.bat (unit tests on Windows) | Sebastiano Tronto | 2025-08-13 | 1 | -1/+0 |
| | | |||||
| * | Wrapped pthread use in custom API | Sebastiano Tronto | 2025-08-11 | 1 | -0/+1 |
| | | |||||
| * | Update tests for oriented_cube_t | Sebastiano Tronto | 2025-04-22 | 1 | -7/+8 |
| | | |||||
| * | Updated tests and added fixed =A to B32 output | Sebastiano Tronto | 2025-04-22 | 1 | -2/+2 |
| | | |||||
| * | Better logging function | Sebastiano Tronto | 2025-04-15 | 1 | -2/+2 |
| | | | | | | | | Now it is possible to provide some data together with the logging function. This is useful for example in C++, where I can now provide an arbitrary callable object as data, and a simple wrapper function that call the callable object as logging function. | ||||
| * | Some minor changes to the interface. | Sebastiano Tronto | 2025-04-08 | 1 | -6/+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. | ||||
| * | DR coordinate solver | Sebastiano Tronto | 2025-03-28 | 1 | -1/+1 |
| | | |||||
| * | More safety with pointers using VLA function parameters | Sebastiano Tronto | 2025-03-25 | 1 | -1/+1 |
| | | |||||
| * | Big cleanup for appendsolution() | Sebastiano Tronto | 2025-03-24 | 1 | -0/+1 |
| | | | | | | | | | | | With this PR the appendsolution routine is extracted from the h48 solver and the new coordinate solver and made generic. This has many advantages: - less repetition (even if the two versions are different enough that *for now* it was not a big deal) - smaller h48/solve.h file, which is already a big beast - easier to test the appendsolution() routine separately | ||||
| * | Some safety with move arrays, small refactor appendchar | Sebastiano Tronto | 2025-03-22 | 1 | -1/+1 |
| | | |||||
| * | Working (?) version of coordinate solver | Sebastiano Tronto | 2025-03-09 | 1 | -1/+1 |
| | | |||||
| * | Begin work for coordinate solver | Sebastiano Tronto | 2025-03-04 | 1 | -0/+1 |
| | | |||||
| * | Make writecube safer | Sebastiano Tronto | 2024-10-12 | 1 | -2/+2 |
| | | |||||
| * | Avoid repeating typedefs in tests | Sebastiano Tronto | 2024-10-04 | 1 | -0/+5 |
| | | |||||
| * | Reorganized folder structure | Sebastiano Tronto | 2024-08-18 | 1 | -17/+4 |
| | | |||||
| * | cube_neon ver1 | enricotenuti | 2024-08-07 | 1 | -1/+8 |
| | | |||||
| * | Changed logger from va_args to ... | Sebastiano Tronto | 2024-06-20 | 1 | -2/+9 |
| | | |||||
| * | Use callback function to log to stderr | Sebastiano Tronto | 2024-06-17 | 1 | -0/+13 |
| | | |||||
| * | Remvoed cube_fast_t and more. More cleaning up to do. | Sebastiano Tronto | 2024-06-09 | 1 | -8/+4 |
| | | |||||
| * | Added tests for h48 invcoord | Sebastiano Tronto | 2024-05-20 | 1 | -0/+2 |
| | | |||||
| * | Added inverse eo and copy_{edges,corners} | Sebastiano Tronto | 2024-05-17 | 1 | -0/+1 |
| | | |||||
| * | Added cocsep data generation, but it is very slow | Sebastiano Tronto | 2024-03-30 | 1 | -0/+1 |
| | | |||||
| * | Test cleanup | Sebastiano Tronto | 2023-11-13 | 1 | -1/+20 |
| | | |||||
| * | Tidy up; made things testable | Sebastiano Tronto | 2023-11-13 | 1 | -0/+7 |
