feat: add solver core skeleton

This commit is contained in:
NINI
2026-06-12 02:25:07 +09:00
parent 4e7fd1087d
commit cbd1a6c5d7
46 changed files with 1911 additions and 19 deletions
+9
View File
@@ -0,0 +1,9 @@
#include <fesa/core/ids.hpp>
#include <type_traits>
int main()
{
static_assert(!std::is_same_v<fesa::core::NodeId, fesa::core::ElementId>);
return fesa::core::NodeId{7}.value == 7 ? 0 : 1;
}