From 32746926310f4e669f4bd55fa0826d9c7dfbf7ce Mon Sep 17 00:00:00 2001 From: Marto Date: Fri, 1 May 2026 21:09:17 +0200 Subject: [PATCH] Removed debug code --- src/simulator.zig | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/simulator.zig b/src/simulator.zig index 2470716..773ed9e 100644 --- a/src/simulator.zig +++ b/src/simulator.zig @@ -157,14 +157,6 @@ pub const Simulator = struct { std.debug.panic("Intersection selection failure: {}\n", .{err}); }; defer self.allocator.free(intersections); - - // DEBUG TODO REMOVE - std.debug.print("Displaying intersection position and the intersected road:\n", .{}); - for (0..intersections.len) |i| { - const int = intersections[i]; - std.debug.print("Road ID={d} Pos: ({d}, {d})\n", .{int.road.id, int.pos.x, int.pos.y}); - } - self.splitRoadsByIntersections(intersections, temp, cur_node); self.node_man.temp_node = if (self.auto_continue) cur_node else null;