MCPcopy Index your code
hub / github.com/evalplus/evalplus / get_mutation_set_cover

Function get_mutation_set_cover

tools/tsr/minimization.py:111–117  ·  view source on GitHub ↗
(
    mutation_dir: str, exclude_model: str, dataset: str
)

Source from the content-addressed store, hash-verified

109
110
111def 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
120def get_sample_set_cover(

Callers 1

mainFunction · 0.85

Calls 2

collect_mutation_infoFunction · 0.90
parallel_greedy_coverFunction · 0.85

Tested by

no test coverage detected