Switch to Chalk master, without fuel

This commit is contained in:
Florian Diebold 2019-07-14 22:11:04 +02:00
parent dcb0c02e3a
commit c8284d8424
3 changed files with 27 additions and 27 deletions

View file

@ -62,7 +62,7 @@ fn solve(
let context = ChalkContext { db, krate };
let solver = db.trait_solver(krate);
debug!("solve goal: {:?}", goal);
let solution = solver.lock().solve_with_fuel(&context, goal, Some(1000));
let solution = solver.lock().solve(&context, goal);
debug!("solve({:?}) => {:?}", goal, solution);
solution
}