From ab772f0a3169d1a0663fbc6de138fb2b3b6e4ad3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Sejkora?= Date: Wed, 3 Feb 2021 23:07:24 +0100 Subject: [PATCH] Increase the top layout count for combination attempts --- src/combine-layouts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/combine-layouts.rs b/src/combine-layouts.rs index 3dba5b5..a9b6c15 100644 --- a/src/combine-layouts.rs +++ b/src/combine-layouts.rs @@ -23,7 +23,7 @@ fn main() { let transposed_city = transpose_city(&city); eprintln!("Finished building a transposed city"); - const TOP_LAYOUT_COUNT: usize = 1000; + const TOP_LAYOUT_COUNT: usize = 1500; let mut cache = combine::CompatibilityCache::new();