Skip to content

Commit

Permalink
Logic is hard, so is concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Mar 30, 2024
1 parent 30d169c commit d0bfd65
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions benchmark_automation/benchmark_automation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,12 @@ private static void Main(string[] args) {
mathematica_stream.WriteLine("}");
mathematica_stream.Close();
var unseen_benchmarks = (from seen in seen_benchmarks
where seen.Value
where !seen.Value
select seen.Key).ToArray();
if (unseen_benchmarks.Length > 0 ) {
throw new ArgumentException(
"The following benchmarks were not run: " + unseen_benchmarks);
"The following benchmarks were not run:\n" +
string.Join("\n", unseen_benchmarks));
}
}

Expand Down

0 comments on commit d0bfd65

Please sign in to comment.