Skip to content

Commit

Permalink
docs: fixed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nfbruns committed Jun 26, 2024
1 parent 4acddcd commit a0e84a1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion batsat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ readme = "README.md"
debug = []

[dependencies]
batsat = "0.5.0"
batsat = "0.5.0" # when changing this version, do not forget to update signature
rustsat = { version = "0.4.3", path = "../rustsat", default-features = false, features = [
] }
anyhow = { version = "1.0.80" }
Expand Down
3 changes: 1 addition & 2 deletions batsat/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//! # BatSat Solver Interface
//!
//! Interface to the [Minisat](https://github.com/c-cube/batsat) incremental
//! SAT solver.
//! Interface to the [BatSat](https://github.com/c-cube/batsat) incremental SAT-Solver
use batsat::{intmap::AsIndex, lbool, BasicSolver, SolverInterface};
use rustsat::{
Expand Down
3 changes: 0 additions & 3 deletions batsat/tests/incremental.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,3 @@ fn assumption_sequence() {
let solver = BatsatBasicSolver::default();
test_assumption_sequence(solver);
}

// Note: Cannot test prepro version of minisat with this small example because
// the variable are eliminated by preprocessing
2 changes: 1 addition & 1 deletion batsat/tests/small.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fn simp_small_sat() {
assert_eq!(res, SolverResult::Sat);
}

// Note: this instance seems too hard for minisat to solve
// Note: this instance seems too hard for batsat to solve
#[test]
#[ignore]
fn simp_small_unsat() {
Expand Down

0 comments on commit a0e84a1

Please sign in to comment.