feat: implement phase 1 solver baseline

This commit is contained in:
NINI
2026-05-01 02:59:28 +09:00
parent 10f1436e0f
commit c5be1f988c
13 changed files with 1960 additions and 84 deletions
+8
View File
@@ -0,0 +1,8 @@
#include "fesa/fesa.hpp"
namespace fesa {
static_assert(sizeof(GlobalId) == 8, "GlobalId must remain 64-bit");
static_assert(sizeof(EquationId) == 8, "EquationId must remain 64-bit");
static_assert(sizeof(SparseIndex) == 8, "SparseIndex must remain 64-bit");
static_assert(sizeof(Real) == 8, "Real must remain double precision");
} // namespace fesa