You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| SolveNQueens | 8 | 12.75 ms | 0.111 ms | 0.006 ms | 650 | 7,238 | 40.68 KB |
83
+
| SolveNQueens | 10 | 340.93 ms | 16.757 ms | 0.918 ms | 10,902 | 74,184 | 68.52 KB |
84
+
| SolveNQueens | 12 | 4,979.17 ms | 125.127 ms | 6.859 ms | 133,379 | 669,397 | 96.77 KB |
85
+
```
86
+
87
+
> **Note:** OR-Tools allocation figures only reflect .NET managed heap usage (the C# interop layer). The solver itself is written in C++ and allocates on the native heap, which is not tracked by BenchmarkDotNet's `MemoryDiagnoser`. Direct memory comparisons between Decider and OR-Tools are therefore not meaningful.
88
+
79
89
**Search Metrics Explained:**
80
90
-**Backtracks** (Decider): Total backtracks during search - distinguishes algorithmic vs implementation improvements
81
91
-**Conflicts** (OR-Tools): Similar to backtracks - number of conflicts encountered
0 commit comments