Skip to content

Commit 31d6f2a

Browse files
committed
Increase hard-coded max size to 30
1 parent d69da2f commit 31d6f2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chalk-solve/src/recursive/fulfill.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@ impl<'s, 'db, I: Interner> Fulfill<'s, 'db, I> {
126126
let obligation = match obligation {
127127
Obligation::Prove(goal) => {
128128
let truncated =
129-
truncate::truncate(self.solver.program.interner(), &mut self.infer, 10, &goal);
129+
truncate::truncate(self.solver.program.interner(), &mut self.infer, 30, &goal);
130130
Obligation::Prove(truncated.value)
131131
}
132132
Obligation::Refute(goal) => {
133133
let truncated =
134-
truncate::truncate(self.solver.program.interner(), &mut self.infer, 10, &goal);
134+
truncate::truncate(self.solver.program.interner(), &mut self.infer, 30, &goal);
135135
Obligation::Refute(truncated.value)
136136
}
137137
};

0 commit comments

Comments
 (0)