Skip to content

Commit cecbb14

Browse files
minor fixes
1 parent b1a96e8 commit cecbb14

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

benchmark/single-source/SetTests.swift

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,9 @@ public let SetTests = [
155155
setUpFunction: { blackHole([setOAB, arrayOCD]) }),
156156
BenchmarkInfo(
157157
name: "Set.isSubset.Seq.Int25",
158-
runFunction: { n in run_SetIsSubsetSeqInt(setB, arrayAB, true, 50 * n) },
158+
runFunction: { n in run_SetIsSubsetSeqInt(setB, arrayBC, true, 50 * n) },
159159
tags: [.validation, .api, .Set],
160-
setUpFunction: { blackHole([setB, arrayAB]) }),
160+
setUpFunction: { blackHole([setB, arrayBC]) }),
161161
BenchmarkInfo(
162162
name: "Set.isSubset.Seq.Box25",
163163
runFunction: { n in run_SetIsSubsetSeqBox(setOB, arrayOAB, true, 50 * n) },
@@ -237,9 +237,9 @@ public let SetTests = [
237237
setUpFunction: { blackHole([setOAB, arrayOCD]) }),
238238
BenchmarkInfo(
239239
name: "Set.isStrictSubset.Seq.Int25",
240-
runFunction: { n in run_SetIsStrictSubsetSeqInt(setB, arrayAB, true, 50 * n) },
240+
runFunction: { n in run_SetIsStrictSubsetSeqInt(setB, arrayBC, true, 50 * n) },
241241
tags: [.validation, .api, .Set],
242-
setUpFunction: { blackHole([setB, arrayAB]) }),
242+
setUpFunction: { blackHole([setB, arrayBC]) }),
243243
BenchmarkInfo(
244244
name: "Set.isStrictSubset.Seq.Box25",
245245
runFunction: { n in run_SetIsStrictSubsetSeqBox(setOB, arrayOAB, true, 50 * n) },
@@ -278,9 +278,9 @@ public let SetTests = [
278278
setUpFunction: { blackHole([setOCD, arrayOAB]) }),
279279
BenchmarkInfo(
280280
name: "Set.isSuperset.Seq.Int25",
281-
runFunction: { n in run_SetIsSupersetSeqInt(setAB, arrayB, true, 50 * n) },
281+
runFunction: { n in run_SetIsSupersetSeqInt(setB, arrayBC, false, 50 * n) },
282282
tags: [.validation, .api, .Set],
283-
setUpFunction: { blackHole([setAB, arrayB]) }),
283+
setUpFunction: { blackHole([setB, arrayBC]) }),
284284
BenchmarkInfo(
285285
name: "Set.isSuperset.Seq.Box25",
286286
runFunction: { n in run_SetIsSupersetSeqBox(setOAB, arrayOB, true, 50 * n) },
@@ -319,9 +319,9 @@ public let SetTests = [
319319
setUpFunction: { blackHole([setOCD, arrayOAB]) }),
320320
BenchmarkInfo(
321321
name: "Set.isStrictSuperset.Seq.Int25",
322-
runFunction: { n in run_SetIsStrictSupersetSeqInt(setAB, arrayB, true, 50 * n) },
322+
runFunction: { n in run_SetIsStrictSupersetSeqInt(setB, arrayBC, false, 50 * n) },
323323
tags: [.validation, .api, .Set],
324-
setUpFunction: { blackHole([setAB, arrayB]) }),
324+
setUpFunction: { blackHole([setB, arrayBC]) }),
325325
BenchmarkInfo(
326326
name: "Set.isStrictSuperset.Seq.Box25",
327327
runFunction: { n in run_SetIsStrictSupersetSeqBox(setOAB, arrayOB, true, 50 * n) },

0 commit comments

Comments
 (0)