Use 4 cores by default (to be improved)

This commit is contained in:
Patrick Lühne 2020-05-28 18:41:47 +02:00
parent 7895bf83c4
commit dab121c684
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ impl Problem
// TODO: make configurable again
let (proof_result, proof_time_seconds) =
run_vampire(&tptp_problem_to_prove_next_statement,
Some(&["--mode", "casc", "--cores", "8", "--time_limit", "300"]))?;
Some(&["--mode", "casc", "--cores", "4", "--time_limit", "300"]))?;
match self.next_unproven_statement_do_mut(
|statement| -> Result<(), crate::Error>