feat(solver-bootstrap): step 3 — core-ids-and-diagnostics

This commit is contained in:
KOKO\Mimi
2026-07-30 13:01:15 +09:00
parent 3e44deed72
commit 34d21f43fe
10 changed files with 255 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#pragma once
#include <vector>
#include <fesa/core/diagnostic.hpp>
namespace fesa {
struct Status final {
bool succeeded;
std::vector<Diagnostic> diagnostics;
};
} // namespace fesa