File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -270,15 +270,15 @@ impl Solver {
270270 solver. add_repository ( repo) ;
271271 }
272272 solver. set_binary_only ( !self . allow_builds ) ;
273- solver. set_initial_request_impossible_checks (
274- self . check_impossible_initial || self . check_impossible_all ,
275- ) ;
276- solver. set_resolve_validation_impossible_checks (
277- self . check_impossible_validation || self . check_impossible_all ,
278- ) ;
279- solver. set_build_key_impossible_checks (
280- self . check_impossible_builds || self . check_impossible_all ,
281- ) ;
273+ // solver.set_initial_request_impossible_checks(
274+ // self.check_impossible_initial || self.check_impossible_all,
275+ // );
276+ // solver.set_resolve_validation_impossible_checks(
277+ // self.check_impossible_validation || self.check_impossible_all,
278+ // );
279+ // solver.set_build_key_impossible_checks(
280+ // self.check_impossible_builds || self.check_impossible_all,
281+ // );
282282
283283 Ok ( solver)
284284 }
Original file line number Diff line number Diff line change 33// https://github.com/spkenv/spk
44
55mod abstract_solver;
6- mod cdcl_solver;
6+ pub mod cdcl_solver;
77mod error;
88mod io;
99#[ cfg( feature = "statsd" ) ]
You can’t perform that action at this time.
0 commit comments