Remove block sort algorithm and per-seed tests

This commit is contained in:
Ian Gulliver
2026-02-23 22:32:46 -08:00
parent 7dbc3e8088
commit 49f0cdc290
3 changed files with 1 additions and 47 deletions

View File

@@ -26,17 +26,6 @@ func TestBuildTimelineFromMockShow(t *testing.T) {
t.Logf("tracks=%d blocks=%d", len(tl.Tracks), len(tl.Blocks))
}
func TestBuildTimelineSeed11(t *testing.T) {
show := GenerateMockShow(11, 5, 20, 4, 5)
if err := show.Validate(); err != nil {
t.Fatalf("validate: %v", err)
}
_, err := BuildTimeline(show)
if err != nil {
t.Fatalf("BuildTimeline failed: %v", err)
}
}
func BenchmarkBuildTimeline(b *testing.B) {
show := GenerateMockShow(42, 5, 20, 4, 5)
if err := show.Validate(); err != nil {