(self, h, only_even=True)
| 189 | return best_value, plot, self.resolutions |
| 190 | |
| 191 | def getw(self, h, only_even=True): |
| 192 | w = h * self.ar |
| 193 | w = int(round(w)) |
| 194 | if only_even: |
| 195 | w = w // 2 * 2 |
| 196 | |
| 197 | return w |
| 198 | |
| 199 | def analyze_results(self, vals): |
| 200 | ratios = [0.0] |
no outgoing calls
no test coverage detected