(self, file_name)
| 247 | } |
| 248 | |
| 249 | def WriteToFile(self, file_name): |
| 250 | with open(file_name, 'w') as f: |
| 251 | f.write(json.dumps(self.ToDict())) |
| 252 | |
| 253 | def HasEnoughRuns(self, graph_config, confidence_level): |
| 254 | """Checks if the mean of the results for a given trace config is within |