Skip to main content

run_tournament

Function run_tournament 

Source
pub fn run_tournament(
    hypotheses: Vec<Hypothesis>,
    config: &TournamentConfig,
    repo_root: &Path,
) -> Vec<HypothesisResult>
Expand description

Run a tournament: evaluate all hypotheses in parallel sandboxes, sort by fitness, return ranked results.

In the async version, this would use tokio::spawn + Semaphore. For now, we use a thread pool approach.