(count int)
| 272 | } |
| 273 | |
| 274 | func positiveRate(count int) float64 { |
| 275 | if count > 0 { |
| 276 | return 1.0 |
| 277 | } |
| 278 | return 0.0 |
| 279 | } |
| 280 | |
| 281 | func hasMemoryLiftCase(tiers []string) bool { |
| 282 | ids := ExecutionCaseIDsFor(BenchmarkPluginMemory, tiers, "effectiveness") |