diff options
| author | Nic Gaffney <gaffney_nic@protonmail.com> | 2024-09-04 15:03:54 -0500 |
|---|---|---|
| committer | Nic Gaffney <gaffney_nic@protonmail.com> | 2024-09-04 15:03:54 -0500 |
| commit | 8344fe2ae2aaad616a2aa4ddecb1adb3741199e4 (patch) | |
| tree | 47bb83a9728275645e2321e669eecfd422d353ee /build.zig | |
| parent | 5b7e264d3a11baebd7fedb63f104959ccdc6ad65 (diff) | |
| download | particle-sim-8344fe2ae2aaad616a2aa4ddecb1adb3741199e4.tar.gz | |
perf: Added a stop if particles aren't close
avoids excessive multiplication.
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ const std = @import("std"); pub fn build(b: *std.Build) !void { const target = b.standardTargetOptions(.{}); - const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseSafe }); + const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseFast }); const exe = b.addExecutable(.{ .name = "particle-sim", |
