(
mutation_dir: str, exclude_model: str, dataset: str
)
| 109 | |
| 110 | |
| 111 | def get_mutation_set_cover( |
| 112 | mutation_dir: str, exclude_model: str, dataset: str |
| 113 | ) -> Dict[str, List[str]]: |
| 114 | mutation_info_dict = collect_mutation_info( |
| 115 | os.path.join(mutation_dir, "eval_results.json"), dataset |
| 116 | ) |
| 117 | return parallel_greedy_cover(mutation_info_dict, exclude_model, "mutation") |
| 118 | |
| 119 | |
| 120 | def get_sample_set_cover( |
no test coverage detected