Audit hardening (S1+S2): numerics, newton_core refactor, solver diagnostics, validation #39

Merged
user2595 merged 16 commits from fix/b1-v3-c1-quick-wins into main 2026-05-31 22:16:38 +00:00
Showing only changes of commit 83a61b0228 - Show all commits

View File

@@ -41,7 +41,11 @@ jobs:
run: cmake -S code -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: nice -n 19 cmake --build build --target conformallab_tests -j$(nproc)
# Serial build (-j1): the 800m-limited container OOM-kills cc1plus when
# several Eigen+GoogleTest translation units compile in parallel
# (`-j$(nproc)`), failing test-fast non-deterministically regardless of
# branch content. Mirrors the Pi-protection already used by test-cgal.
run: nice -n 19 cmake --build build --target conformallab_tests -j1
- name: Run tests
run: >