MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / main

Function main

codeclash/analysis/matrix.py:323–326  ·  view source on GitHub ↗

Main function to evaluate PvP tournament matrices.

(pvp_output_dir: Path, n_repetitions: int = 3, max_workers: int = 4)

Source from the content-addressed store, hash-verified

321
322
323def main(pvp_output_dir: Path, n_repetitions: int = 3, max_workers: int = 4):
324 """Main function to evaluate PvP tournament matrices."""
325 evaluator = PvPMatrixEvaluator(pvp_output_dir, n_repetitions, max_workers)
326 return evaluator.evaluate_all_matrices()
327
328
329if __name__ == "__main__":

Callers 1

matrix.pyFile · 0.70

Calls 2

evaluate_all_matricesMethod · 0.95
PvPMatrixEvaluatorClass · 0.85

Tested by

no test coverage detected