Skip to content

Commit

Permalink
cargo test
Browse files Browse the repository at this point in the history
  • Loading branch information
shnarazk committed Jul 28, 2024
1 parent 18baf94 commit ba52577
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cdb/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1328,15 +1328,15 @@ mod tests {
assert!(!c.is_dead());
assert!(!c.is(FlagClause::LEARNT));
#[cfg(feature = "just_used")]
assert!(!c.is(FlagClause::USED));
assert!(c.is(FlagClause::USED));
let c2 = cdb
.new_clause(&mut asg, &mut vec![lit(-1), lit(2), lit(3)], true)
.as_ci();
let c = &cdb[c2];
assert!(!c.is_dead());
assert!(c.is(FlagClause::LEARNT));
#[cfg(feature = "just_used")]
assert!(!c.is(FlagClause::USED));
assert!(c.is(FlagClause::USED));
}
#[test]
fn test_clause_equality() {
Expand Down

0 comments on commit ba52577

Please sign in to comment.