From b2fc2bbe40a561a220a5f80bf80ec7cdd720d37f Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Mon, 20 Apr 2026 15:02:51 +0200 Subject: [PATCH] fix: pre-existing smoke_test_real_data missing curiosity_weight arg 3 call sites to GpuExperienceCollector::new() were missing the 12th argument (curiosity_weight). Pre-existing test issue surfaced during Task 4 verification. Fixed by passing 0.0 (disabled in tests). Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/ml/tests/smoke_test_real_data.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/ml/tests/smoke_test_real_data.rs b/crates/ml/tests/smoke_test_real_data.rs index f291c66d9..706b9133f 100644 --- a/crates/ml/tests/smoke_test_real_data.rs +++ b/crates/ml/tests/smoke_test_real_data.rs @@ -543,6 +543,7 @@ mod gpu_smoke { (64, 64, 32, 32), (54, 51, 51), 4, 50, + 0.0, // curiosity_weight (disabled for test) ).unwrap(); // Run 4 episodes of 50 timesteps each @@ -619,6 +620,7 @@ mod gpu_smoke { (64, 64, 32, 32), (54, 51, 51), 4, 50, + 0.0, // curiosity_weight (disabled for test) ).unwrap(); let n_episodes = 4_usize; @@ -681,6 +683,7 @@ mod gpu_smoke { (64, 64, 32, 32), (54, 51, 51), 4, 50, + 0.0, // curiosity_weight (disabled for test) ).unwrap(); let n_episodes = 4_usize;