32 lines
1.4 KiB
C
32 lines
1.4 KiB
C
#pragma once
|
|
// Step 1288: Sprint 105 integration summary.
|
|
#include <nlohmann/json.hpp>
|
|
|
|
struct Sprint105IntegrationSummary {
|
|
static constexpr int sprintNumber = 105;
|
|
static constexpr int stepsCompleted = 10;
|
|
static constexpr const char* theme = "Sprint 105 Plan: Benchmark-Driven Auto-Tuning of Policies";
|
|
static bool verify() { return sprintNumber == 105 && stepsCompleted == 10; }
|
|
static nlohmann::json toJson() {
|
|
nlohmann::json j = nlohmann::json::object();
|
|
j["sprint"] = sprintNumber;
|
|
j["steps"] = stepsCompleted;
|
|
j["theme"] = theme;
|
|
j["status"] = "complete";
|
|
nlohmann::json tools = nlohmann::json::array();
|
|
tools.push_back("whetstone_propose_policy_tuning");
|
|
tools.push_back("whetstone_validate_policy_tuning");
|
|
j["tools_added"] = tools;
|
|
nlohmann::json comps = nlohmann::json::array();
|
|
comps.push_back("PolicyParameterizationSchemaV2");
|
|
comps.push_back("AutoTuningProposalGeneratorFromBenchmarkDeltas");
|
|
comps.push_back("ControlledPolicyReplayHarness");
|
|
comps.push_back("BaselineVsTunedComparatorWithConfidenceBounds");
|
|
comps.push_back("TuningRiskClassifierAndGuardrailGates");
|
|
comps.push_back("PromotionPolicyForTunedPacks");
|
|
comps.push_back("PolicyTuningReportArtifact");
|
|
j["components"] = comps;
|
|
return j;
|
|
}
|
|
};
|