Skip to content

Commit 3a5825b

Browse files
committed
Temporarily hardcode using the new solver
Signed-off-by: J Robert Ray <[email protected]>
1 parent 44114dc commit 3a5825b

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

crates/spk-cli/common/src/flags.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff 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
}

crates/spk-solve/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// https://github.com/spkenv/spk
44

55
mod abstract_solver;
6-
mod cdcl_solver;
6+
pub mod cdcl_solver;
77
mod error;
88
mod io;
99
#[cfg(feature = "statsd")]

0 commit comments

Comments
 (0)