#![deny(missing_docs)]
use std::ops::Not;
pub mod dimacs;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct Var(usize);
impl Var {
pub fn new(index: usize) -> Self {
Self(index)
}
pub fn index(self) -> usize {
self.0
}
pub fn pos_lit(self) -> Lit {
Lit::new(self, false)
}
pub fn neg_lit(self) -> Lit {
Lit::new(self, true)
}
}
#[derive(Clone, Copy, PartialEq, Debug)]
pub struct Lit(usize);
pub const UNDEF_LIT: Lit = Lit(usize::MAX);
impl Lit {
pub fn sign(self) -> bool {
self.0 & 1 == 1
}
pub fn var(self) -> Var {
Var(self.0 >> 1)
}
pub fn index(self) -> usize {
self.0
}
pub fn new(var: Var, sign: bool) -> Lit {
Lit(var.0 + var.0 + (sign as usize))
}
}
impl Not for Lit {
type Output = Self;
fn not(self) -> Self {
Lit(self.0 ^ 1)
}
}
#[derive(Clone, Copy, PartialEq, Debug)]
pub enum LBool {
True,
False,
Undef,
}
impl Not for LBool {
type Output = Self;
fn not(self) -> Self {
match self {
LBool::True => LBool::False,
LBool::False => LBool::True,
LBool::Undef => LBool::Undef,
}
}
}
impl From<bool> for LBool {
fn from(b: bool) -> Self {
if b {
LBool::True
} else {
LBool::False
}
}
}
#[derive(Clone, Debug)]
pub struct Clause {
pub lits: Vec<Lit>,
}
#[derive(Debug, PartialEq)]
pub enum Solution {
Unsat,
Best(Vec<bool>),
Sat(Vec<bool>),
Unknown,
}