Start from scratch with a new simulation #1

Merged
max merged 31 commits from restart into main 2025-04-25 15:03:09 +02:00
Showing only changes of commit 9333f6c6fb - Show all commits

View File

@ -261,7 +261,7 @@ fn try_regression() -> Result<(usize, usize, usize), DynError> {
const GAMES: usize = 100;
// limit the parallelism
rayon::ThreadPoolBuilder::new()
.num_threads(std::thread::available_parallelism()?.get() / 3)
.num_threads(std::thread::available_parallelism()?.get() / 4)
.build_global()
.unwrap();