We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70e3473 commit 73ce004Copy full SHA for 73ce004
crates/hir_ty/src/traits.rs
@@ -27,7 +27,7 @@ fn create_chalk_solver() -> chalk_recursive::RecursiveSolver<Interner> {
27
let overflow_depth =
28
var("CHALK_OVERFLOW_DEPTH").ok().and_then(|s| s.parse().ok()).unwrap_or(100);
29
let caching_enabled = true;
30
- let max_size = var("CHALK_SOLVER_MAX_SIZE").ok().and_then(|s| s.parse().ok()).unwrap_or(30);
+ let max_size = var("CHALK_SOLVER_MAX_SIZE").ok().and_then(|s| s.parse().ok()).unwrap_or(100);
31
chalk_recursive::RecursiveSolver::new(overflow_depth, max_size, caching_enabled)
32
}
33
0 commit comments