Initial commit

This commit is contained in:
2026-07-03 16:37:12 +07:00
commit 63b8c1ea8b
1931 changed files with 640587 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using RobotNet10.NavigationTune.Shared.Interfaces;
namespace RobotNet10.NavigationTune.Shared.Models;
/// <summary>
/// Batch test result
/// </summary>
public class BatchTestResult
{
public Guid BatchId { get; set; } = Guid.NewGuid();
public NavigationParameterSet Parameters { get; set; } = null!;
public List<TestExecutionResult> Results { get; set; } = new();
public int SuccessCount { get; set; }
public int FailureCount { get; set; }
public double AverageScore { get; set; }
}
/// <summary>
/// Configuration comparison result
/// </summary>
public class ComparisonResult
{
public TestScenario Scenario { get; set; } = null!;
public List<NavigationParameterSet> Configurations { get; set; } = new();
public Dictionary<string, TestExecutionResult> Results { get; set; } = new();
public string BestConfiguration { get; set; } = string.Empty;
}