@@ -100,22 +100,22 @@ public let SetTests = [
100
100
101
101
BenchmarkInfo (
102
102
name: " Set.isDisjoint.Empty.Int0 " ,
103
- runFunction: { n in run_SetIsDisjointInt ( setE, setAB, true , 50 * n) } ,
103
+ runFunction: { n in run_SetIsDisjointInt ( setE, setAB, true , 5000 * n) } ,
104
104
tags: [ . validation, . api, . Set] ,
105
105
setUpFunction: { blackHole ( [ setE, setAB] ) } ) ,
106
106
BenchmarkInfo (
107
107
name: " Set.isDisjoint.Int0.Empty " ,
108
- runFunction: { n in run_SetIsDisjointInt ( setAB, setE, true , 50 * n) } ,
108
+ runFunction: { n in run_SetIsDisjointInt ( setAB, setE, true , 5000 * n) } ,
109
109
tags: [ . validation, . api, . Set] ,
110
110
setUpFunction: { blackHole ( [ setAB, setE] ) } ) ,
111
111
BenchmarkInfo (
112
112
name: " Set.isDisjoint.Empty.Box0 " ,
113
- runFunction: { n in run_SetIsDisjointBox ( setOE, setOAB, true , 50 * n) } ,
113
+ runFunction: { n in run_SetIsDisjointBox ( setOE, setOAB, true , 5000 * n) } ,
114
114
tags: [ . validation, . api, . Set] ,
115
115
setUpFunction: { blackHole ( [ setOE, setOAB] ) } ) ,
116
116
BenchmarkInfo (
117
117
name: " Set.isDisjoint.Box0.Empty " ,
118
- runFunction: { n in run_SetIsDisjointBox ( setOAB, setOE, true , 50 * n) } ,
118
+ runFunction: { n in run_SetIsDisjointBox ( setOAB, setOE, true , 5000 * n) } ,
119
119
tags: [ . validation, . api, . Set] ,
120
120
setUpFunction: { blackHole ( [ setOAB, setOE] ) } ) ,
121
121
BenchmarkInfo (
@@ -130,22 +130,22 @@ public let SetTests = [
130
130
setUpFunction: { blackHole ( [ setOAB, setOCD] ) } ) ,
131
131
BenchmarkInfo (
132
132
name: " Set.isDisjoint.Int25 " ,
133
- runFunction: { n in run_SetIsDisjointInt ( setB, setAB, false , 50 * n) } ,
133
+ runFunction: { n in run_SetIsDisjointInt ( setB, setAB, false , 5000 * n) } ,
134
134
tags: [ . validation, . api, . Set] ,
135
135
setUpFunction: { blackHole ( [ setB, setAB] ) } ) ,
136
136
BenchmarkInfo (
137
137
name: " Set.isDisjoint.Box25 " ,
138
- runFunction: { n in run_SetIsDisjointBox ( setOB, setOAB, false , 50 * n) } ,
138
+ runFunction: { n in run_SetIsDisjointBox ( setOB, setOAB, false , 5000 * n) } ,
139
139
tags: [ . validation, . api, . Set] ,
140
140
setUpFunction: { blackHole ( [ setOB, setOAB] ) } ) ,
141
141
BenchmarkInfo (
142
142
name: " Set.isDisjoint.Int50 " ,
143
- runFunction: { n in run_SetIsDisjointInt ( setY, setXY, false , 50 * n) } ,
143
+ runFunction: { n in run_SetIsDisjointInt ( setY, setXY, false , 5000 * n) } ,
144
144
tags: [ . validation, . api, . Set] ,
145
145
setUpFunction: { blackHole ( [ setY, setXY] ) } ) ,
146
146
BenchmarkInfo (
147
147
name: " Set.isDisjoint.Int100 " ,
148
- runFunction: { n in run_SetIsDisjointInt ( setP, setQ, false , 50 * n) } ,
148
+ runFunction: { n in run_SetIsDisjointInt ( setP, setQ, false , 5000 * n) } ,
149
149
tags: [ . validation, . api, . Set] ,
150
150
setUpFunction: { blackHole ( [ setP, setQ] ) } ) ,
151
151
@@ -244,22 +244,22 @@ public let SetTests = [
244
244
245
245
BenchmarkInfo (
246
246
name: " Set.subtracting.Empty.Int0 " ,
247
- runFunction: { n in run_SetSubtractingInt ( setE, setAB, 0 , 10 * n) } ,
247
+ runFunction: { n in run_SetSubtractingInt ( setE, setAB, 0 , 1000 * n) } ,
248
248
tags: [ . validation, . api, . Set] ,
249
249
setUpFunction: { blackHole ( [ setE, setAB] ) } ) ,
250
250
BenchmarkInfo (
251
251
name: " Set.subtracting.Int0.Empty " ,
252
- runFunction: { n in run_SetSubtractingInt ( setAB, setE, countAB, 10 * n) } ,
252
+ runFunction: { n in run_SetSubtractingInt ( setAB, setE, countAB, 1000 * n) } ,
253
253
tags: [ . validation, . api, . Set] ,
254
254
setUpFunction: { blackHole ( [ setAB, setE] ) } ) ,
255
255
BenchmarkInfo (
256
256
name: " Set.subtracting.Empty.Box0 " ,
257
- runFunction: { n in run_SetSubtractingBox ( setOE, setOAB, 0 , 10 * n) } ,
257
+ runFunction: { n in run_SetSubtractingBox ( setOE, setOAB, 0 , 1000 * n) } ,
258
258
tags: [ . validation, . api, . Set] ,
259
259
setUpFunction: { blackHole ( [ setOE, setOAB] ) } ) ,
260
260
BenchmarkInfo (
261
261
name: " Set.subtracting.Box0.Empty " ,
262
- runFunction: { n in run_SetSubtractingBox ( setOAB, setOE, countAB, 10 * n) } ,
262
+ runFunction: { n in run_SetSubtractingBox ( setOAB, setOE, countAB, 1000 * n) } ,
263
263
tags: [ . validation, . api, . Set] ,
264
264
setUpFunction: { blackHole ( [ setOAB, setOE] ) } ) ,
265
265
BenchmarkInfo (
0 commit comments