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
/// Maximum acceptable error for a benchmark (by default, BenchmarkDotNet continue iterations until the actual error is less than the specified error).
Copy file name to clipboardExpand all lines: src/BenchmarkDotNet/Running/BenchmarkPartitioner.cs
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -47,8 +47,10 @@ public bool Equals(BenchmarkCase x, BenchmarkCase y)
47
47
returnfalse;
48
48
if(AreDifferent(jobX.Infrastructure.Arguments,jobY.Infrastructure.Arguments))// arguments can be anything (Mono runtime settings or MsBuild parameters)
49
49
returnfalse;
50
+
#pragma warning disable CS0618// Type or member is obsolete
0 commit comments